Struct galvanic_assert::matchers::collection::ContainsInOrder
[−]
[src]
pub struct ContainsInOrder<T> { /* fields omitted */ }Matches if the asserted collection contains all and only of the expected elements in the given order.
Trait Implementations
impl<'a, T, I: 'a> Matcher<'a, I> for ContainsInOrder<T> where T: PartialEq + Debug + 'a,
&'a I: IntoIterator<Item=&'a T> + Debug + 'a[src]
&'a I: IntoIterator<Item=&'a T> + Debug + 'a
fn check(&self, actual: &'a I) -> MatchResult
Checks the passed value if it satisfies the Matcher. Read more