pub struct FileHash {
pub path: String,
pub size: u32,
pub sha256_hex: String,
}Expand description
SHA-256 hash of a file in the ISO.
Fields§
§path: String§size: u32§sha256_hex: StringLowercase hexadecimal SHA-256, 64 characters.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FileHash
impl RefUnwindSafe for FileHash
impl Send for FileHash
impl Sync for FileHash
impl Unpin for FileHash
impl UnsafeUnpin for FileHash
impl UnwindSafe for FileHash
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