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