Documentation
¶
Overview ¶
Package flat provides a flat view of an arbitrary nested structs.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrUnexpectedType = errors.New("unexpected type, expecting a pointer to struct")
ErrUnexpectedType is returned when flatten sees an unsupported type.
Functions ¶
This section is empty.
Types ¶
type Field ¶
type Field interface {
// Name returns the name for a given tag, if any
// and also whatever the returned name is "explicit" by
// the user or plugins are allowed to rewrite it.
Name(tag string) (string, bool)
Tag(key string) (string, bool)
Meta() map[string]string
Interface() any
Set(string) error
// returns the Ptr to this value.
// It is used by complex decoders like uconfig-cue.
Ptr() any
}
Field describe an interface to our flat structs fields.
Click to show internal directories.
Click to hide internal directories.