pub trait Options<T> {
    fn value(&self) -> &T;
}
Expand description

Defines the behavior to retrieve configured options.

Required Methods

Gets the configured value.

Implementors