Searched defs:ExpectedT (Results 1 – 7 of 7) sorted by relevance
170 fn ignoring_leading_whitespace(self) -> StrMatcher<ExpectedT>; in ignoring_leading_whitespace()190 fn ignoring_trailing_whitespace(self) -> StrMatcher<ExpectedT>; in ignoring_trailing_whitespace()214 fn ignoring_outer_whitespace(self) -> StrMatcher<ExpectedT>; in ignoring_outer_whitespace()236 fn ignoring_ascii_case(self) -> StrMatcher<ExpectedT>; in ignoring_ascii_case()271 fn times(self, times: impl Matcher<usize> + 'static) -> StrMatcher<ExpectedT>; in times() method310 fn ignoring_leading_whitespace(self) -> StrMatcher<ExpectedT> { in ignoring_leading_whitespace()318 fn ignoring_trailing_whitespace(self) -> StrMatcher<ExpectedT> { in ignoring_trailing_whitespace()326 fn ignoring_outer_whitespace(self) -> StrMatcher<ExpectedT> { in ignoring_outer_whitespace()331 fn ignoring_ascii_case(self) -> StrMatcher<ExpectedT> { in ignoring_ascii_case()336 fn times(self, times: impl Matcher<usize> + 'static) -> StrMatcher<ExpectedT> { in times() method
75 pub fn superset_of<ExpectedT>(subset: ExpectedT) -> SupersetOfMatcher<ExpectedT> { in superset_of()
74 pub fn subset_of<ExpectedT>(superset: ExpectedT) -> SubsetOfMatcher<ExpectedT> { in subset_of()
77 pub fn ge<ExpectedT>(expected: ExpectedT) -> GeMatcher<ExpectedT> { in ge()
77 pub fn le<ExpectedT>(expected: ExpectedT) -> LeMatcher<ExpectedT> { in le()
77 pub fn lt<ExpectedT>(expected: ExpectedT) -> LtMatcher<ExpectedT> { in lt()
77 pub fn gt<ExpectedT: Debug>(expected: ExpectedT) -> GtMatcher<ExpectedT> { in gt()