Struct predicates::str::EndsWithPredicate  
source · pub struct EndsWithPredicate { /* private fields */ }Expand description
Predicate checks end of str
This is created by predicates::str::ends_with.
Trait Implementations§
source§impl Clone for EndsWithPredicate
 
impl Clone for EndsWithPredicate
source§fn clone(&self) -> EndsWithPredicate
 
fn clone(&self) -> EndsWithPredicate
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresource§impl Debug for EndsWithPredicate
 
impl Debug for EndsWithPredicate
source§impl Display for EndsWithPredicate
 
impl Display for EndsWithPredicate
source§impl PartialEq<EndsWithPredicate> for EndsWithPredicate
 
impl PartialEq<EndsWithPredicate> for EndsWithPredicate
source§fn eq(&self, other: &EndsWithPredicate) -> bool
 
fn eq(&self, other: &EndsWithPredicate) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl Predicate<str> for EndsWithPredicate
 
impl Predicate<str> for EndsWithPredicate
impl Eq for EndsWithPredicate
impl StructuralEq for EndsWithPredicate
impl StructuralPartialEq for EndsWithPredicate
Auto Trait Implementations§
impl RefUnwindSafe for EndsWithPredicate
impl Send for EndsWithPredicate
impl Sync for EndsWithPredicate
impl Unpin for EndsWithPredicate
impl UnwindSafe for EndsWithPredicate
Blanket Implementations§
source§impl<P, Item> PredicateBooleanExt<Item> for Pwhere
    P: Predicate<Item>,
    Item: ?Sized,
 
impl<P, Item> PredicateBooleanExt<Item> for Pwhere
    P: Predicate<Item>,
    Item: ?Sized,
source§fn and<B>(self, other: B) -> AndPredicate<Self, B, Item>where
    B: Predicate<Item>,
    Self: Sized,
 
fn and<B>(self, other: B) -> AndPredicate<Self, B, Item>where
    B: Predicate<Item>,
    Self: Sized,
Compute the logical AND of two 
Predicate results, returning the result. Read more