pub struct StartsWithMatcher<PrefixT: Deref<Target = str>> { /* private fields */ }
Expand description

A matcher matching a string-like type starting with a given prefix.

Intended only to be used from the function starts_with only. Should not be referenced by code outside this library.

Trait Implementations§

source§

impl<PrefixT, ActualT> Matcher<ActualT> for StartsWithMatcher<PrefixT>where
    PrefixT: Deref<Target = str>,
    ActualT: AsRef<str> + Debug + ?Sized,

source§

fn matches(&self, actual: &ActualT) -> MatcherResult

Returns whether the condition matches the datum actual. Read more
source§

fn explain_match(&self, actual: &ActualT) -> MatchExplanation

Prepares a MatchExplanation describing how the expected value encoded in this instance matches or does not match the given value actual. Read more
source§

fn describe(&self, matcher_result: MatcherResult) -> String

Returns a description of self or a negative description if matcher_result is DoesNotMatch. Read more

Auto Trait Implementations§

§

impl<PrefixT> RefUnwindSafe for StartsWithMatcher<PrefixT>where
    PrefixT: RefUnwindSafe,

§

impl<PrefixT> Send for StartsWithMatcher<PrefixT>where
    PrefixT: Send,

§

impl<PrefixT> Sync for StartsWithMatcher<PrefixT>where
    PrefixT: Sync,

§

impl<PrefixT> Unpin for StartsWithMatcher<PrefixT>where
    PrefixT: Unpin,

§

impl<PrefixT> UnwindSafe for StartsWithMatcher<PrefixT>where
    PrefixT: UnwindSafe,

Blanket Implementations§

source§

impl<T, M> AndMatcherExt<T> for Mwhere
    T: Debug,
    M: Matcher<T>,

source§

fn and<Right: Matcher<T>>(self, right: Right) -> ConjunctionMatcher<Self, Right>where
    Self: Sized,

Constructs a matcher that matches both self and right. Read more
source§

impl<T> Any for Twhere
    T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere
    T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere
    T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere
    U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, M> OrMatcherExt<T> for Mwhere
    T: Debug,
    M: Matcher<T>,

source§

fn or<Right: Matcher<T>>(self, right: Right) -> DisjunctionMatcher<Self, Right>where
    Self: Sized,

Constructs a matcher that matches when at least one of self or right matches the input. Read more
source§

impl<T, U> TryFrom<U> for Twhere
    U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere
    U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.