pub trait Options<T> { // Required method fn value(&self) -> Ref<T>; }
Defines the behavior to retrieve configured options.
Gets the configured value.