pub trait MaybeFrom<T> { // Required method fn maybe_from(value: T) -> Option<Self> where Self: Sized; }