pub trait ToMaybe<T> { // Required method fn to_maybe(self) -> Maybe<T>; }
Temporary trait to allow conversions from the old Option<T> mechanism to Maybe<T>.
Option<T>
Maybe<T>