pub trait BuildNone<T> {
    fn none() -> T;
    fn desc() -> &'static str;
}
Expand description

A builder for None values for type T.

Required Methods

Implementors