pub trait IfNotFound {
    type Target;

    fn if_not_found<F: FnOnce() -> Self::Target>(
        self,
        f: F
    ) -> ProcessResult<Self::Target>; }

Required Associated Types§

Required Methods§

Implementors§