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