pub struct FileHash {
pub ino: u64,
pub size: u64,
pub blake3: String,
pub sha256: String,
pub md5: String,
pub sha1: String,
}Expand description
Hash results for a single file (BLAKE3, SHA-256, MD5, SHA-1).
Fields§
§ino: u64§size: u64§blake3: String§sha256: String§md5: String§sha1: StringTrait 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