pub trait IntoOption where
    Self: Sized
{ fn none_if<F>(self, callback: F) -> Option<Self>
    where
        F: Fn(&Self) -> bool
, { ... } }

Provided methods

Implementors