pub struct Digest { /* private fields */ }
Expand description
Digest generated from a Sha1
instance.
A digest can be formatted to view the digest as a hex string, or the bytes can be extracted for later processing.
To retrieve a hex string result call to_string
on it (requires that std
is available).
If the serde
feature is enabled a digest can also be serialized and
deserialized. Likewise a digest can be parsed from a hex string.
Implementations§
Trait Implementations§
Source§impl Ord for Digest
impl Ord for Digest
Source§impl PartialOrd for Digest
impl PartialOrd for Digest
impl Copy for Digest
impl Eq for Digest
impl StructuralPartialEq for Digest
Auto Trait Implementations§
impl Freeze for Digest
impl RefUnwindSafe for Digest
impl Send for Digest
impl Sync for Digest
impl Unpin for Digest
impl UnwindSafe for Digest
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