pub enum CertificationLevel {
None,
Level1,
Level2,
Level3,
Level3Plus,
}Expand description
Certification level (FIDO)
Variants§
Trait Implementations§
Source§impl Clone for CertificationLevel
impl Clone for CertificationLevel
Source§fn clone(&self) -> CertificationLevel
fn clone(&self) -> CertificationLevel
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CertificationLevel
Source§impl Debug for CertificationLevel
impl Debug for CertificationLevel
Source§impl<'de> Deserialize<'de> for CertificationLevel
impl<'de> Deserialize<'de> for CertificationLevel
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for CertificationLevel
Source§impl Ord for CertificationLevel
impl Ord for CertificationLevel
Source§fn cmp(&self, other: &CertificationLevel) -> Ordering
fn cmp(&self, other: &CertificationLevel) -> Ordering
1.21.0 (const: unstable) · 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 CertificationLevel
impl PartialEq for CertificationLevel
Source§fn eq(&self, other: &CertificationLevel) -> bool
fn eq(&self, other: &CertificationLevel) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for CertificationLevel
impl PartialOrd for CertificationLevel
Source§impl Serialize for CertificationLevel
impl Serialize for CertificationLevel
impl StructuralPartialEq for CertificationLevel
Auto Trait Implementations§
impl Freeze for CertificationLevel
impl RefUnwindSafe for CertificationLevel
impl Send for CertificationLevel
impl Sync for CertificationLevel
impl Unpin for CertificationLevel
impl UnsafeUnpin for CertificationLevel
impl UnwindSafe for CertificationLevel
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