pub struct ScanStats {Show 14 fields
pub processes: usize,
pub scan_names: String,
pub initial_files: usize,
pub initial_dirs: usize,
pub initial_size: u64,
pub excluded_count: usize,
pub final_files: usize,
pub final_dirs: usize,
pub final_size: u64,
pub error_count: usize,
pub total_bytes_scanned: u64,
pub packages_assembled: usize,
pub manifests_seen: usize,
pub phase_timings: Vec<(String, f64)>,
}Fields§
§processes: usize§scan_names: String§initial_files: usize§initial_dirs: usize§initial_size: u64§excluded_count: usize§final_files: usize§final_dirs: usize§final_size: u64§error_count: usize§total_bytes_scanned: u64§packages_assembled: usize§manifests_seen: usize§phase_timings: Vec<(String, f64)>Trait Implementations§
Auto Trait Implementations§
impl Freeze for ScanStats
impl RefUnwindSafe for ScanStats
impl Send for ScanStats
impl Sync for ScanStats
impl Unpin for ScanStats
impl UnsafeUnpin for ScanStats
impl UnwindSafe for ScanStats
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more