Struct predicates::path::StrFilePredicate
source · pub struct StrFilePredicate { /* private fields */ }
Expand description
Predicate that compares string content of files
Trait Implementations§
source§impl Clone for StrFilePredicate
impl Clone for StrFilePredicate
source§fn clone(&self) -> StrFilePredicate
fn clone(&self) -> StrFilePredicate
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 StrFilePredicate
impl Debug for StrFilePredicate
source§impl Display for StrFilePredicate
impl Display for StrFilePredicate
source§impl PartialEq for StrFilePredicate
impl PartialEq for StrFilePredicate
source§impl Predicate<Path> for StrFilePredicate
impl Predicate<Path> for StrFilePredicate
source§impl Predicate<str> for StrFilePredicate
impl Predicate<str> for StrFilePredicate
impl Eq for StrFilePredicate
impl StructuralPartialEq for StrFilePredicate
Auto Trait Implementations§
impl Freeze for StrFilePredicate
impl RefUnwindSafe for StrFilePredicate
impl Send for StrFilePredicate
impl Sync for StrFilePredicate
impl Unpin for StrFilePredicate
impl UnwindSafe for StrFilePredicate
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<P, Item> PredicateBooleanExt<Item> for P
impl<P, Item> PredicateBooleanExt<Item> for P
source§fn and<B>(self, other: B) -> AndPredicate<Self, B, Item>
fn and<B>(self, other: B) -> AndPredicate<Self, B, Item>
Compute the logical AND of two
Predicate
results, returning the result. Read moresource§fn or<B>(self, other: B) -> OrPredicate<Self, B, Item>
fn or<B>(self, other: B) -> OrPredicate<Self, B, Item>
Compute the logical OR of two
Predicate
results, returning the result. Read moresource§impl<P, Item> PredicateBoxExt<Item> for Pwhere
P: Predicate<Item>,
impl<P, Item> PredicateBoxExt<Item> for Pwhere
P: Predicate<Item>,
source§impl<P, Item> PredicateNameExt<Item> for P
impl<P, Item> PredicateNameExt<Item> for P
source§impl<P> PredicateStrExt for P
impl<P> PredicateStrExt for P
source§fn trim(self) -> TrimPredicate<Self>
fn trim(self) -> TrimPredicate<Self>
source§fn from_utf8(self) -> Utf8Predicate<Self>
fn from_utf8(self) -> Utf8Predicate<Self>
source§fn normalize(self) -> NormalizedPredicate<Self>
fn normalize(self) -> NormalizedPredicate<Self>
Returns a
NormalizedPredicate
that ensures
the newlines within the data passed to Self
is normalised. Read more