pub trait ResultLogExt<T, E> {
    fn ok_warn(self) -> Option<T>;
    fn ok_error(self) -> Option<T>;
}

Required Methods§

Implementations on Foreign Types§

Implementors§