pub struct IgnoredCounts {
pub files: usize,
pub dirs: usize,
}Expand description
How many paths a walk declined to index.
Fields§
§files: usizeSource files dropped by a rule (vendored, generated, or gitignored).
dirs: usizeDirectories not descended into at all. Their contents are not counted
in files, so a pruned node_modules costs one entry here rather than
a walk of everything inside it.
Trait Implementations§
Source§impl Clone for IgnoredCounts
impl Clone for IgnoredCounts
Source§fn clone(&self) -> IgnoredCounts
fn clone(&self) -> IgnoredCounts
Returns a duplicate 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 IgnoredCounts
impl Debug for IgnoredCounts
Source§impl Default for IgnoredCounts
impl Default for IgnoredCounts
Source§fn default() -> IgnoredCounts
fn default() -> IgnoredCounts
Returns the “default value” for a type. Read more
Source§impl PartialEq for IgnoredCounts
impl PartialEq for IgnoredCounts
impl Copy for IgnoredCounts
impl Eq for IgnoredCounts
impl StructuralPartialEq for IgnoredCounts
Auto Trait Implementations§
impl Freeze for IgnoredCounts
impl RefUnwindSafe for IgnoredCounts
impl Send for IgnoredCounts
impl Sync for IgnoredCounts
impl Unpin for IgnoredCounts
impl UnsafeUnpin for IgnoredCounts
impl UnwindSafe for IgnoredCounts
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.