pub struct ScanCacheEntry {
pub relative: String,
pub bytes: u64,
pub content_hash: String,
pub content_fingerprint: String,
pub version: FileVersion,
pub binary_checked: bool,
}Expand description
Compact reusable evidence for one content-hashed file.
Fields§
§relative: String§bytes: u64§content_hash: String§content_fingerprint: String§version: FileVersion§binary_checked: boolTrait Implementations§
Source§impl Clone for ScanCacheEntry
impl Clone for ScanCacheEntry
Source§fn clone(&self) -> ScanCacheEntry
fn clone(&self) -> ScanCacheEntry
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 ScanCacheEntry
impl Debug for ScanCacheEntry
impl Eq for ScanCacheEntry
Source§impl PartialEq for ScanCacheEntry
impl PartialEq for ScanCacheEntry
impl StructuralPartialEq for ScanCacheEntry
Auto Trait Implementations§
impl Freeze for ScanCacheEntry
impl RefUnwindSafe for ScanCacheEntry
impl Send for ScanCacheEntry
impl Sync for ScanCacheEntry
impl Unpin for ScanCacheEntry
impl UnsafeUnpin for ScanCacheEntry
impl UnwindSafe for ScanCacheEntry
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