pub trait IntoOption: Sealed {
type OptionT;
// Required method
fn into_option(self) -> Option<Self::OptionT>;
}pub trait IntoOption: Sealed {
type OptionT;
// Required method
fn into_option(self) -> Option<Self::OptionT>;
}