pub struct FilePredicate { /* private fields */ }Available on crate feature
predicates only.Trait Implementations§
Source§impl Display for FilePredicate
impl Display for FilePredicate
Source§impl Predicate<str> for FilePredicate
impl Predicate<str> for FilePredicate
Auto Trait Implementations§
impl Freeze for FilePredicate
impl RefUnwindSafe for FilePredicate
impl Send for FilePredicate
impl Sync for FilePredicate
impl Unpin for FilePredicate
impl UnwindSafe for FilePredicate
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 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