Documentation ¶
Overview ¶
Package options provides a way to pass unstructured sets of options to a component expecting a strongly-typed configuration structure.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GenerateFromModel ¶
GenerateFromModel takes the generic options, and tries to build a new instance of the model's type by matching keys from the generic options to fields in the model.
The return value is of the same type than the model (including a potential pointer qualifier).
Types ¶
type CannotSetFieldError ¶
CannotSetFieldError is the error returned when the generic parameters hold a value for a field that cannot be set in the destination structure.
func (CannotSetFieldError) Error ¶
func (e CannotSetFieldError) Error() string
type Generic ¶
type Generic map[string]interface{}
Generic is a basic type to store arbitrary settings.
type NoSuchFieldError ¶
NoSuchFieldError is the error returned when the generic parameters hold a value for a field absent from the destination structure.
func (NoSuchFieldError) Error ¶
func (e NoSuchFieldError) Error() string
type TypeMismatchError ¶
TypeMismatchError is the error returned when the type of the generic value for a field mismatches the type of the destination structure.
func (TypeMismatchError) Error ¶
func (e TypeMismatchError) Error() string