pub struct ScanCacheStats {
pub reused_hashes: u64,
pub content_reads: u64,
pub fingerprint_reads: u64,
}Fields§
§reused_hashes: u64§content_reads: u64§fingerprint_reads: u64Whole-file fingerprint reads used to validate cached SHA-256 values.
Trait Implementations§
Source§impl Clone for ScanCacheStats
impl Clone for ScanCacheStats
Source§fn clone(&self) -> ScanCacheStats
fn clone(&self) -> ScanCacheStats
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 moreimpl Copy for ScanCacheStats
Source§impl Debug for ScanCacheStats
impl Debug for ScanCacheStats
Source§impl Default for ScanCacheStats
impl Default for ScanCacheStats
Source§fn default() -> ScanCacheStats
fn default() -> ScanCacheStats
Returns the “default value” for a type. Read more
impl Eq for ScanCacheStats
Source§impl PartialEq for ScanCacheStats
impl PartialEq for ScanCacheStats
impl StructuralPartialEq for ScanCacheStats
Auto Trait Implementations§
impl Freeze for ScanCacheStats
impl RefUnwindSafe for ScanCacheStats
impl Send for ScanCacheStats
impl Sync for ScanCacheStats
impl Unpin for ScanCacheStats
impl UnsafeUnpin for ScanCacheStats
impl UnwindSafe for ScanCacheStats
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