pub trait ContainingResultAssertions<T, E> where
    T: Debug,
    E: Debug
{ fn is_ok_containing<V: Borrow<T>>(&mut self, expected_value: V)
    where
        T: PartialEq
; fn is_err_containing<V: Borrow<E>>(&mut self, expected_value: V)
    where
        E: PartialEq
; }

Required Methods

Implementors