Struct galvanic_assert::matchers::collection::ContainsInAnyOrder [] [src]

pub struct ContainsInAnyOrder<T> { /* fields omitted */ }

Matches if the asserted collection contains all and only the expected elements in any order.

Trait Implementations

impl<'a, T, I> Matcher<'a, I> for ContainsInAnyOrder<T> where
    T: PartialEq + Debug + 'a,
    &'a I: IntoIterator<Item = &'a T> + Debug + 'a, 
[src]

[src]

Checks the passed value if it satisfies the Matcher. Read more