pub struct SkipReport {
pub too_large: u64,
pub binary: u64,
pub unreadable: u64,
pub language_excluded: u64,
pub symlinks: u64,
pub symlink_files: u64,
pub symlink_directories: u64,
pub walk_errors: u64,
}Expand description
Counts of files excluded for reasons other than being generated.
Fields§
§too_large: u64Files past the size ceiling.
binary: u64Files that looked binary (a NUL byte in their head).
unreadable: u64Files that could not be read.
language_excluded: u64Source files excluded because their language was disabled.
symlinks: u64Symbolic links deliberately left unresolved by the walker.
symlink_files: u64Symbolic-link files deliberately left unresolved by the walker.
symlink_directories: u64Symbolic-link directories deliberately left unresolved by the walker.
walk_errors: u64Directory entries the walker could not read.
Implementations§
Trait Implementations§
Source§impl Clone for SkipReport
impl Clone for SkipReport
Source§fn clone(&self) -> SkipReport
fn clone(&self) -> SkipReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SkipReport
impl Debug for SkipReport
Source§impl Default for SkipReport
impl Default for SkipReport
Source§fn default() -> SkipReport
fn default() -> SkipReport
Returns the “default value” for a type. Read more
impl Eq for SkipReport
Source§impl PartialEq for SkipReport
impl PartialEq for SkipReport
impl StructuralPartialEq for SkipReport
Auto Trait Implementations§
impl Freeze for SkipReport
impl RefUnwindSafe for SkipReport
impl Send for SkipReport
impl Sync for SkipReport
impl Unpin for SkipReport
impl UnsafeUnpin for SkipReport
impl UnwindSafe for SkipReport
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.