pub struct CompactContentEvidence {
pub content_hash: Option<Box<str>>,
pub content_fingerprint: Option<Box<str>>,
pub version: FileVersion,
pub binary_checked: bool,
}Expand description
Optional rich evidence kept out of metadata-only compact entries.
Fields§
§content_hash: Option<Box<str>>§content_fingerprint: Option<Box<str>>Whole-content validation fingerprint used only for strict cache reuse.
version: FileVersion§binary_checked: boolTrait Implementations§
Source§impl Clone for CompactContentEvidence
impl Clone for CompactContentEvidence
Source§fn clone(&self) -> CompactContentEvidence
fn clone(&self) -> CompactContentEvidence
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 CompactContentEvidence
impl Debug for CompactContentEvidence
impl Eq for CompactContentEvidence
Source§impl PartialEq for CompactContentEvidence
impl PartialEq for CompactContentEvidence
impl StructuralPartialEq for CompactContentEvidence
Auto Trait Implementations§
impl Freeze for CompactContentEvidence
impl RefUnwindSafe for CompactContentEvidence
impl Send for CompactContentEvidence
impl Sync for CompactContentEvidence
impl Unpin for CompactContentEvidence
impl UnsafeUnpin for CompactContentEvidence
impl UnwindSafe for CompactContentEvidence
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