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 should_emit(&self, dir: &Path) -> bool
fn should_emit(&self, dir: &Path) -> bool
Checks whether
dir should be emitted by the iterator.Source§fn and<B>(self, other: B) -> And<Self, B>
fn and<B>(self, other: B) -> And<Self, B>
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: PartialOrd> PartialOrd for This<A>
impl<A: PartialOrd> PartialOrd for This<A>
impl<A: Copy> Copy for This<A>
impl<A: Eq> Eq for This<A>
impl<A> StructuralPartialEq for This<A>
Auto Trait Implementations§
impl<A> Freeze for This<A>where
A: Freeze,
impl<A> RefUnwindSafe for This<A>where
A: RefUnwindSafe,
impl<A> Send for This<A>where
A: Send,
impl<A> Sync for This<A>where
A: Sync,
impl<A> Unpin for This<A>where
A: Unpin,
impl<A> UnwindSafe for This<A>where
A: 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