pub enum ChecksumAlgo {
Black3,
}Variants§
Black3
Cryptographic yet fast hashing algo, suitable for quick checksum verification.
Trait Implementations§
Source§impl Clone for ChecksumAlgo
impl Clone for ChecksumAlgo
Source§fn clone(&self) -> ChecksumAlgo
fn clone(&self) -> ChecksumAlgo
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 moreSource§impl Debug for ChecksumAlgo
impl Debug for ChecksumAlgo
Source§impl Default for ChecksumAlgo
impl Default for ChecksumAlgo
Source§fn default() -> ChecksumAlgo
fn default() -> ChecksumAlgo
Returns the “default value” for a type. Read more
Source§impl<'_derivative_strum> From<&'_derivative_strum ChecksumAlgo> for &'static str
impl<'_derivative_strum> From<&'_derivative_strum ChecksumAlgo> for &'static str
Source§fn from(x: &'_derivative_strum ChecksumAlgo) -> &'static str
fn from(x: &'_derivative_strum ChecksumAlgo) -> &'static str
Converts to this type from the input type.
Source§impl From<ChecksumAlgo> for &'static str
impl From<ChecksumAlgo> for &'static str
Source§fn from(x: ChecksumAlgo) -> &'static str
fn from(x: ChecksumAlgo) -> &'static str
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ChecksumAlgo
impl RefUnwindSafe for ChecksumAlgo
impl Send for ChecksumAlgo
impl Sync for ChecksumAlgo
impl Unpin for ChecksumAlgo
impl UnwindSafe for ChecksumAlgo
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