Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // ErrIncorrectInputValue represents wrong input param ErrIncorrectInputValue = errors.New("value is not a pointer to slice of structs") )
Functions ¶
func Marshal ¶
Marshal returns the fixed width table data encoding of v If v is nil or not a pointer to slice of structs, Unmarshal returns an ErrIncorrectInputValue.
By default, Marshal converts struct's field names to column names. This behavior could be overridden by `column` or `json` tags.
To unmarshal raw data into a struct, Unmarshal tries to convert every column's data from string to Marshal converts base go types into their string representation (int, int8, int16, int32, int64, uint, uint8, uint16, uint32, uint64, float32, float64, string, bool, time.Time) It also supports slices and custom types by converting them to JSON.
By default, time.RFC3339 is used to parse time.Time data. To override this behavior use `format` tag. For example:
type Person struct { Name string BDate time.Time `column:"Birthday" format:"2006/01/02"` Postcode int `json:"Zip"` }
func MarshalWriter ¶
MarshalWriter behaves the same as Marshal, but write data into io.Writer
func Unmarshal ¶
Unmarshal parses the fixed width table data and stores the result in the value pointed to by v. If v is nil or not a pointer to slice of structs, Unmarshal returns an ErrIncorrectInputValue.
To unmarshal raw data into a struct, Unmarshal tries to convert every column's data from string to supported types (int, int8, int16, int32, int64, uint, uint8, uint16, uint32, uint64, float32, float64, string, bool, time.Time). It also supports slices and custom types by reading them as JSON.
By default, Unmarshal tries to match column names to struct's field names. This behavior could be overridden by `column` or `json` tags.
By default, time.RFC3339 is used to parse time.Time data. To override this behavior use `format` tag. For example:
type Person struct { Name string BDate time.Time `column:"Birthday" format:"2006/01/02"` Postcode int `json:"Zip"` }
func UnmarshalReader ¶
UnmarshalReader behaves the same as Unmarshal, but reads data from io.Reader
Types ¶
This section is empty.