pub trait Unless: Sized { // Required method fn unless(self, option: Option<Self>) -> Self; }
Provide a blanket implementation for all Sized types.