Versions in this module Expand all Collapse all v0 v0.8.8 Jul 30, 2024 v0.8.7 Jul 30, 2024 v0.8.6 Jul 30, 2024 v0.8.5 Jul 19, 2024 v0.8.4 Jul 19, 2024 v0.8.3 Jul 16, 2024 Changes in this version + var IntsString = `[1,2,3,4,5]` + var IntsValue = Ints + type Arrays struct + ByteArray [3]byte + EmptyByteArray [0]byte + EmptyIntArray [0]int + IntArray [5]int + type CustomMapKeyType struct + Map map[customKeyType]int + type DeepNest struct + MapSlice []map[Str]Str + NamedMapMap map[Str]NamedMap + NamedMapSlice []NamedMap + NamedSliceMap map[Str]NamedSlice + NamedSliceSlice []NamedSlice + NamedStringSlice []NamedString + SliceMap map[Str][]Str + SliceMap1 map[Str][]Str + SliceMap2 map[Str][]Str + type DeepNestOptional struct + MapSlice []map[Str]Str + type DisallowUnknown struct + FieldOne string + type EmbeddedInnerType struct + Field1 int + type EmbeddedInnerType2 struct + Field3 int + type EmbeddedStruct struct + Field1 int + Field2 string + type EmbeddedType struct + Field2 int + Inner struct{ ... } + type EncodingFlagsTestMap struct + F map[string]string + type EncodingFlagsTestSlice struct + F []string + type ErrorBoolSlice []bool + type ErrorIntMap map[uint32]string + type ErrorIntSlice []int + type ErrorNestedStruct struct + ErrorStruct ErrorStruct + Int int + type ErrorStruct struct + Int int + IntSlice []int + Slice []int + String string + type ErrorUintSlice []uint + type EscIntStruct struct + A int + type EscStringStruct struct + A string + type ExcludedField struct + DoNotProcess bool + DoNotProcess1 bool + Process bool + type GenDeclared1 struct + Value string + type GenDeclaredWithComment struct + Value string + type IntArray [2]int + type IntArrayStruct struct + Pointer *IntArray + Value IntArray + type IntKeyedMapStruct struct + Bar map[int16]MapUint32String + Foo MapMyIntString + type Intern struct + Field string + type Ints []int + type KeyWithEncodingMarshaler int + func (f *KeyWithEncodingMarshaler) UnmarshalText(text []byte) error + func (f KeyWithEncodingMarshaler) MarshalText() (text []byte, err error) + type KeyWithEncodingMarshalers map[KeyWithEncodingMarshaler]string + type MapInt32String map[int32]string + type MapInt64String map[int64]string + type MapIntString map[int]string + type MapMyIntString map[MyInt]string + type MapStringString map[string]string + type MapUint32String map[uint32]string + type MapUint64String map[uint64]string + type MapUintString map[uint]string + type MapUintptrString map[uintptr]string + type Maps struct + CustomMap map[Str]Str + InterfaceMap map[string]interface{} + Map map[string]string + NilMap map[string]string + type MembersEscaped struct + A string + type MembersUnescaped struct + A string + type MyInt int + type MyString string + type MyUInt8 uint8 + type MyUInt8Array [2]MyUInt8 + type MyUInt8Slice []MyUInt8 + type NamedBool bool + type NamedFloat32 float32 + type NamedFloat64 float64 + type NamedInt int + type NamedInt16 int16 + type NamedInt32 int32 + type NamedInt64 int64 + type NamedInt8 int8 + type NamedMap map[Str]Str + type NamedPrimitiveTypes struct + Bool NamedBool + Float32 NamedFloat32 + Float64 NamedFloat64 + Int NamedInt + Int16 NamedInt16 + Int32 NamedInt32 + Int64 NamedInt64 + Int8 NamedInt8 + Ptr NamedStrPtr + PtrNil NamedStrPtr + String NamedString + Uint NamedUint + Uint16 NamedUint16 + Uint32 NamedUint32 + Uint64 NamedUint64 + Uint8 NamedUint8 + type NamedSlice []Str + type NamedStrPtr *string + type NamedString string + type NamedType struct + Inner struct{ ... } + type NamedUint uint + type NamedUint16 uint16 + type NamedUint32 uint32 + type NamedUint64 uint64 + type NamedUint8 uint8 + type NestedEasyMarshaler struct + EasilyMarshaled bool + func (i *NestedEasyMarshaler) MarshalEasyJSON(w jwriter.Writer) error + type NestedInterfaces struct + Map map[string]interface{} + Slice []interface{} + Value interface{} + type NestedMarshaler struct + Value easyjson.MarshalerUnmarshaler + Value2 int + type NoIntern struct + Field string + type NocopyStruct struct + A string + B string + type OmitEmpty struct + IntE int + IntNE int + PtrE *string + PtrNE *string + StrE string + StrNE string + SubE SubStruct + SubNE SubStruct + SubPE *SubStruct + SubPNE *SubStruct + type OmitEmptyDefault struct + Field string + Str string + Str1 string + Str2 string + type Opts struct + Int opt.Int + IntNull opt.Int + IntZero opt.Int + Str opt.String + StrEmpty opt.String + StrNull opt.String + StrOmitempty opt.String + type PrimitiveTypes struct + Bool bool + Float32 float32 + Float32String float32 + Float64 float64 + Float64String float64 + Int int + Int16 int16 + Int16String int16 + Int32 int32 + Int32String int32 + Int64 int64 + Int64String int64 + Int8 int8 + Int8String int8 + IntString int + Ptr *string + PtrNil *string + String string + Uint uint + Uint16 uint16 + Uint16String uint16 + Uint32 uint32 + Uint32String uint32 + Uint64 uint64 + Uint64String uint64 + Uint8 uint8 + Uint8String uint8 + UintString uint + type Raw struct + Field easyjson.RawMessage + Field2 string + type RequiredOptionalMap struct + NoOmitEmptyMap map[int]string + OmitEmptyMap map[int]string + ReqMap map[int]string + type RequiredOptionalStruct struct + FirstName string + Lastname string + type Slices struct + ByteSlice []byte + EmptyByteSlice []byte + EmptyIntSlice []int + IntSlice []int + NilByteSlice []byte + NilIntSlice []int + type SnakeStruct struct + CustomNamedField string + WeirdHTTPStuff bool + type StdMarshaler struct + IP net.IP + T time.Time + type Str string + type Struct struct + Test string + type Struct1 struct + type Struct2 struct + From *Struct1 + Through *Struct1 + type StructWithInterface struct + Field1 int + Field2 interface{} + Field3 string + type StructWithMarshaler struct + Value int + func (s *StructWithMarshaler) MarshalEasyJSON(w jwriter.Writer) error + func (s *StructWithMarshaler) UnmarshalEasyJSON(w *jlexer.Lexer) + type StructWithUnknownsProxy struct + Field1 string + type StructWithUnknownsProxyWithOmitempty struct + Field1 string + type Structs struct + Anonymous struct{ ... } + Anonymous1 ... + AnonymousPtrSlice []*struct{ V int } + AnonymousSlice []struct{ ... } + Slice []string + Sub1 SubStruct + Sub2 *SubStruct + SubA1 SubStructAlias + SubA2 *SubStructAlias + SubNil *SubStruct + SubPtrSlice []*SubStruct + SubPtrSliceNil []*SubStruct + SubSlice []SubStruct + SubSliceNil []SubStruct + Value2 int + type SubP struct + V string + type SubStruct struct + Value string + Value2 string + type SubStructAlias SubStruct + type TypeDeclared struct + Value string + type TypeNotDeclared struct + Value string + type TypeNotSkipped struct + Value string + type TypeSkipped struct + Value string + type UserMarshaler struct + T tMarshaler + V vMarshaler