pub trait OptionExt<T> {
    fn if_present<E: Fn(&T)>(&self, action: E);
}

Required Methods§

Implementations on Foreign Types§

Implementors§