pub trait SomeWrap<T> { // Required method fn wrap(self) -> Option<T>; }
Used to wrap values in Option<T> for default arguments.
Option<T>