Trait inspector::OptionInspector[][src]

pub trait OptionInspector<T> {
    fn inspect<F>(self, f: F) -> Option<T>
    where
        F: FnMut(&T)
;
fn debug(self) -> Option<T>; }

Required Methods

Implementations on Foreign Types

impl<T> Inspector<T> for Option<T> where
    T: Debug
[src]

Implementors