pub trait OptionLike { // Required method fn is_none(&self) -> bool; }
Trait for types that can be treated as Option-like