...

Source file src/github.com/mailru/easyjson/tests/reference_to_pointer.go

Documentation: github.com/mailru/easyjson/tests

     1  package tests
     2  
     3  type Struct1 struct {
     4  }
     5  
     6  //easyjson:json
     7  type Struct2 struct {
     8  	From    *Struct1 `json:"from,omitempty"`
     9  	Through *Struct1 `json:"through,omitempty"`
    10  }
    11  

View as plain text