Trait spectral::vec::ComparingVecSpec [] [src]

pub trait ComparingVecSpec<'s, T: 's> where T: Debug + PartialEq {
    fn contains(self, expected_value: &T);
    fn mapped_contains<F, M: 's>(self, mapping_function: F, expected_value: &M) where M: Debug + PartialEq, F: Fn(&'s T) -> &M;
}

Required Methods

Implementors