pub struct IntegrityReport {
pub verified: Vec<LockedDependency>,
pub missing: Vec<LockedDependency>,
pub hash_mismatch: Vec<LockedDependency>,
pub unreadable: Vec<LockedDependency>,
}Expand description
Integrity verification report
Fields§
§verified: Vec<LockedDependency>§missing: Vec<LockedDependency>§hash_mismatch: Vec<LockedDependency>§unreadable: Vec<LockedDependency>Implementations§
Trait Implementations§
Source§impl Clone for IntegrityReport
impl Clone for IntegrityReport
Source§fn clone(&self) -> IntegrityReport
fn clone(&self) -> IntegrityReport
Returns a duplicate of the value. Read more
1.0.0 · 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 IntegrityReport
impl Debug for IntegrityReport
Source§impl Default for IntegrityReport
impl Default for IntegrityReport
Source§fn default() -> IntegrityReport
fn default() -> IntegrityReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for IntegrityReport
impl RefUnwindSafe for IntegrityReport
impl Send for IntegrityReport
impl Sync for IntegrityReport
impl Unpin for IntegrityReport
impl UnsafeUnpin for IntegrityReport
impl UnwindSafe for IntegrityReport
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