pub enum HashingAlgo {
Blake3,
Sha256,
}
Variants§
Trait Implementations§
Source§impl Clone for HashingAlgo
impl Clone for HashingAlgo
Source§fn clone(&self) -> HashingAlgo
fn clone(&self) -> HashingAlgo
Returns a copy 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 HashingAlgo
impl Debug for HashingAlgo
Source§impl Default for HashingAlgo
impl Default for HashingAlgo
Source§fn default() -> HashingAlgo
fn default() -> HashingAlgo
Returns the “default value” for a type. Read more
Source§impl From<HashingAlgo> for CapFlags
impl From<HashingAlgo> for CapFlags
Source§fn from(value: HashingAlgo) -> Self
fn from(value: HashingAlgo) -> Self
Converts to this type from the input type.
Source§impl Ord for HashingAlgo
impl Ord for HashingAlgo
Source§fn cmp(&self, other: &HashingAlgo) -> Ordering
fn cmp(&self, other: &HashingAlgo) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for HashingAlgo
impl PartialEq for HashingAlgo
Source§impl PartialOrd for HashingAlgo
impl PartialOrd for HashingAlgo
Source§impl TryFrom<CapFlags> for HashingAlgo
impl TryFrom<CapFlags> for HashingAlgo
impl Copy for HashingAlgo
impl Eq for HashingAlgo
impl StructuralPartialEq for HashingAlgo
Auto Trait Implementations§
impl Freeze for HashingAlgo
impl ObjSafe for HashingAlgo
impl RefUnwindSafe for HashingAlgo
impl Send for HashingAlgo
impl StoreCopy for HashingAlgo
impl Sync for HashingAlgo
impl Unpin for HashingAlgo
impl UnwindSafe for HashingAlgo
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