Docs.rs
assertrs-0.0.1
assertrs 0.0.1
Docs.rs crate page
MIT
Links
Homepage
Repository
crates.io
Source
Owners
infr-dev-bot
Dependencies
Versions
0%
of the crate is documented
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
Matcher
assertrs
0.0.1
Matcher
Required Methods
matches
Implementors
In crate assertrs
assertrs
Trait
Matcher
Copy item path
Source
pub trait Matcher<T> { // Required method fn
matches
(&self, t: T) ->
MatchOutput
; }
Required Methods
§
Source
fn
matches
(&self, t: T) ->
MatchOutput
Implementors
§
Source
§
impl<Inner, T>
Matcher
<
Option
<T>> for
SomeMatcher
<Inner>
where Inner:
Matcher
<T> +
Debug
,
Source
§
impl<Inner, T>
Matcher
<T> for
NotMatcher
<Inner>
where Inner:
Matcher
<T>,
Source
§
impl<Inner, T, I>
Matcher
<I> for
AllMatcher
<Inner>
where Inner:
Matcher
<T>, I:
IntoIterator
<Item = T>,
Source
§
impl<Inner, T, I>
Matcher
<I> for
AnyMatcher
<Inner>
where Inner:
Matcher
<T>, I:
IntoIterator
<Item = T>,
Source
§
impl<T>
Matcher
<
Option
<T>> for
NoneMatcher
Source
§
impl<T>
Matcher
<T> for
AnythingMatcher
Source
§
impl<T:
Eq
>
Matcher
<T> for
EqMatcher
<T>