pub struct HasherResult {
pub md5_hex: String,
pub checksums: Vec<ChecksumValue>,
}Expand description
Result produced by StreamingHasher::finish.
Fields§
§md5_hex: StringHex-encoded MD5 digest.
checksums: Vec<ChecksumValue>Per-algorithm base64-encoded checksums (only for algorithms that were requested when the hasher was created).
Trait Implementations§
Source§impl Clone for HasherResult
impl Clone for HasherResult
Source§fn clone(&self) -> HasherResult
fn clone(&self) -> HasherResult
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 moreAuto Trait Implementations§
impl Freeze for HasherResult
impl RefUnwindSafe for HasherResult
impl Send for HasherResult
impl Sync for HasherResult
impl Unpin for HasherResult
impl UnsafeUnpin for HasherResult
impl UnwindSafe for HasherResult
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