import "github.com/docker/docker/vendor/github.com/docker/libnetwork/options"
Package options provides a way to pass unstructured sets of options to a component expecting a strongly-typed configuration structure.
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).
CannotSetFieldError is the error returned when the generic parameters hold a value for a field that cannot be set in the destination structure.
func (e CannotSetFieldError) Error() string
Generic is a basic type to store arbitrary settings.
NewGeneric returns a new Generic instance.
NoSuchFieldError is the error returned when the generic parameters hold a value for a field absent from the destination structure.
func (e NoSuchFieldError) Error() string
TypeMismatchError is the error returned when the type of the generic value for a field mismatches the type of the destination structure.
func (e TypeMismatchError) Error() string
Package options imports 2 packages (graph). Updated 2017-03-29. Refresh now. Tools for package owners. This is an inactive package (no imports and no commits in at least two years).