pub struct MismatchedFile {
pub path: String,
pub expected: String,
pub actual: String,
}Expand description
A file with a mismatched checksum
Fields§
§path: StringFile path
expected: StringExpected SHA256 from manifest
actual: StringActual SHA256 of file
Trait Implementations§
Source§impl Clone for MismatchedFile
impl Clone for MismatchedFile
Source§fn clone(&self) -> MismatchedFile
fn clone(&self) -> MismatchedFile
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 moreAuto Trait Implementations§
impl Freeze for MismatchedFile
impl RefUnwindSafe for MismatchedFile
impl Send for MismatchedFile
impl Sync for MismatchedFile
impl Unpin for MismatchedFile
impl UnwindSafe for MismatchedFile
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