pub trait ResultTEExt<T, E> {
    fn just_warn(self) -> Option<T>
    where
        E: Display
; }

Required Methods

Implementors