go-json/internal/encoder/option.go

44 lines
760 B
Go
Raw Normal View History

2021-05-31 16:25:33 +03:00
package encoder
2021-06-01 07:40:15 +03:00
type OptionFlag uint8
const (
HTMLEscapeOption OptionFlag = 1 << iota
IndentOption
UnorderedMapOption
DebugOption
ColorizeOption
)
2021-05-31 16:25:33 +03:00
type Option struct {
2021-06-01 07:40:15 +03:00
Flag OptionFlag
ColorScheme *ColorScheme
2021-05-31 16:25:33 +03:00
}
2021-05-31 18:46:42 +03:00
type EncodeFormat struct {
Header string
Footer string
}
type EncodeFormatScheme struct {
Int EncodeFormat
Uint EncodeFormat
Float EncodeFormat
Bool EncodeFormat
String EncodeFormat
Binary EncodeFormat
ObjectStart EncodeFormat
2021-05-31 21:09:47 +03:00
ObjectKey EncodeFormat
2021-05-31 18:46:42 +03:00
ObjectEnd EncodeFormat
ArrayStart EncodeFormat
ArrayEnd EncodeFormat
Colon EncodeFormat
Comma EncodeFormat
2021-05-31 21:09:47 +03:00
Null EncodeFormat
2021-05-31 18:46:42 +03:00
}
type (
ColorScheme = EncodeFormatScheme
ColorFormat = EncodeFormat
)