Struct predicates::path::FileContentPredicate
source · pub struct FileContentPredicate<P>{ /* private fields */ }
Expand description
Predicate adapter that converts a path
predicate to a byte predicate on its content.
This is created by pred.from_path()
.
Trait Implementations§
source§impl<P> Clone for FileContentPredicate<P>
impl<P> Clone for FileContentPredicate<P>
source§fn clone(&self) -> FileContentPredicate<P>
fn clone(&self) -> FileContentPredicate<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> Debug for FileContentPredicate<P>
impl<P> Debug for FileContentPredicate<P>
source§impl<P> Display for FileContentPredicate<P>
impl<P> Display for FileContentPredicate<P>
source§impl<P> PartialEq for FileContentPredicate<P>
impl<P> PartialEq for FileContentPredicate<P>
source§impl<P> Predicate<Path> for FileContentPredicate<P>
impl<P> Predicate<Path> for FileContentPredicate<P>
source§impl<P> PredicateReflection for FileContentPredicate<P>
impl<P> PredicateReflection for FileContentPredicate<P>
impl<P> Copy for FileContentPredicate<P>
impl<P> Eq for FileContentPredicate<P>
impl<P> StructuralPartialEq for FileContentPredicate<P>
Auto Trait Implementations§
impl<P> Freeze for FileContentPredicate<P>where
P: Freeze,
impl<P> RefUnwindSafe for FileContentPredicate<P>where
P: RefUnwindSafe,
impl<P> Send for FileContentPredicate<P>where
P: Send,
impl<P> Sync for FileContentPredicate<P>where
P: Sync,
impl<P> Unpin for FileContentPredicate<P>where
P: Unpin,
impl<P> UnwindSafe for FileContentPredicate<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<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<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
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 more