pub enum IntegrityAlgorithm {
None,
HmacSha1_96,
HmacMd5_128,
Md5_128,
HmacSha256_128,
}Variants§
Trait Implementations§
Source§impl Clone for IntegrityAlgorithm
impl Clone for IntegrityAlgorithm
Source§fn clone(&self) -> IntegrityAlgorithm
fn clone(&self) -> IntegrityAlgorithm
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 IntegrityAlgorithm
impl Debug for IntegrityAlgorithm
Source§impl From<IntegrityAlgorithm> for u8
impl From<IntegrityAlgorithm> for u8
Source§fn from(value: IntegrityAlgorithm) -> Self
fn from(value: IntegrityAlgorithm) -> Self
Converts to this type from the input type.
Source§impl Ord for IntegrityAlgorithm
impl Ord for IntegrityAlgorithm
Source§fn cmp(&self, other: &IntegrityAlgorithm) -> Ordering
fn cmp(&self, other: &IntegrityAlgorithm) -> 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 IntegrityAlgorithm
impl PartialEq for IntegrityAlgorithm
Source§impl PartialOrd for IntegrityAlgorithm
impl PartialOrd for IntegrityAlgorithm
Source§impl TryFrom<u8> for IntegrityAlgorithm
impl TryFrom<u8> for IntegrityAlgorithm
impl Copy for IntegrityAlgorithm
impl Eq for IntegrityAlgorithm
impl StructuralPartialEq for IntegrityAlgorithm
Auto Trait Implementations§
impl Freeze for IntegrityAlgorithm
impl RefUnwindSafe for IntegrityAlgorithm
impl Send for IntegrityAlgorithm
impl Sync for IntegrityAlgorithm
impl Unpin for IntegrityAlgorithm
impl UnwindSafe for IntegrityAlgorithm
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