pub struct This<A> { /* private fields */ }Implementations§
Trait Implementations§
source§impl<A> Filter for This<A>where
A: Filter,
impl<A> Filter for This<A>where A: Filter,
source§fn filter(&self, base_path: &Path, directory: &Path) -> bool
fn filter(&self, base_path: &Path, directory: &Path) -> bool
Checks whether
path_to_visit should be visited or not. The base_path is
the initial directory provided to the visitor. Read moresource§fn and<B>(self, other: B) -> And<Self, B>where
Self: Sized,
B: Filter,
fn and<B>(self, other: B) -> And<Self, B>where Self: Sized, B: Filter,
Creates a filter that only accepts both this and the
other condition.source§impl<A: Ord> Ord for This<A>
impl<A: Ord> Ord for This<A>
source§impl<A: PartialEq> PartialEq<This<A>> for This<A>
impl<A: PartialEq> PartialEq<This<A>> for This<A>
source§impl<A: PartialOrd> PartialOrd<This<A>> for This<A>
impl<A: PartialOrd> PartialOrd<This<A>> for This<A>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read more