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§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§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 more