pub struct ManifestValidation {
pub checked_local_files: u64,
pub uri_entries: u64,
pub total_bytes: u64,
}Expand description
Summary returned after re-hashing every local manifest entry.
Fields§
§checked_local_files: u64Number of local files re-hashed successfully.
uri_entries: u64Number of URI entries that intentionally have no local checksum.
total_bytes: u64Total bytes observed across checked local files.
Trait Implementations§
Source§impl Clone for ManifestValidation
impl Clone for ManifestValidation
Source§fn clone(&self) -> ManifestValidation
fn clone(&self) -> ManifestValidation
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 ManifestValidation
impl Debug for ManifestValidation
Source§impl PartialEq for ManifestValidation
impl PartialEq for ManifestValidation
Source§fn eq(&self, other: &ManifestValidation) -> bool
fn eq(&self, other: &ManifestValidation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ManifestValidation
impl Eq for ManifestValidation
impl StructuralPartialEq for ManifestValidation
Auto Trait Implementations§
impl Freeze for ManifestValidation
impl RefUnwindSafe for ManifestValidation
impl Send for ManifestValidation
impl Sync for ManifestValidation
impl Unpin for ManifestValidation
impl UnsafeUnpin for ManifestValidation
impl UnwindSafe for ManifestValidation
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