Struct predicates::str::Utf8Predicate
source · pub struct Utf8Predicate<P>where
P: Predicate<str>,{ /* private fields */ }
Expand description
Predicate adaper that converts a str
predicate to byte predicate.
This is created by pred.from_utf8()
.
Trait Implementations§
source§impl<P> Clone for Utf8Predicate<P>where
P: Predicate<str> + Clone,
impl<P> Clone for Utf8Predicate<P>where P: Predicate<str> + Clone,
source§fn clone(&self) -> Utf8Predicate<P>
fn clone(&self) -> Utf8Predicate<P>
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<P> PartialEq<Utf8Predicate<P>> for Utf8Predicate<P>where
P: Predicate<str> + PartialEq,
impl<P> PartialEq<Utf8Predicate<P>> for Utf8Predicate<P>where P: Predicate<str> + PartialEq,
source§fn eq(&self, other: &Utf8Predicate<P>) -> bool
fn eq(&self, other: &Utf8Predicate<P>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<P> PredicateReflection for Utf8Predicate<P>where
P: Predicate<str>,
impl<P> PredicateReflection for Utf8Predicate<P>where P: Predicate<str>,
impl<P> Copy for Utf8Predicate<P>where P: Predicate<str> + Copy,
impl<P> Eq for Utf8Predicate<P>where P: Predicate<str> + Eq,
impl<P> StructuralEq for Utf8Predicate<P>where P: Predicate<str>,
impl<P> StructuralPartialEq for Utf8Predicate<P>where P: Predicate<str>,
Auto Trait Implementations§
impl<P> RefUnwindSafe for Utf8Predicate<P>where P: RefUnwindSafe,
impl<P> Send for Utf8Predicate<P>where P: Send,
impl<P> Sync for Utf8Predicate<P>where P: Sync,
impl<P> Unpin for Utf8Predicate<P>where P: Unpin,
impl<P> UnwindSafe for Utf8Predicate<P>where P: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
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