pub trait ToMaybe<T> {
    fn to_maybe(self) -> Maybe<T>;
}
Expand description

Temporary trait to allow conversions from the old Option<T> mechanism to Maybe<T>.

Required Methods§

Implementations on Foreign Types§

Implementors§