#[non_exhaustive]pub enum AuthenticationCertificateLevel {
QUALIFIED,
ADVANCED,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for AuthenticationCertificateLevel
impl Clone for AuthenticationCertificateLevel
Source§fn clone(&self) -> AuthenticationCertificateLevel
fn clone(&self) -> AuthenticationCertificateLevel
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<'de> Deserialize<'de> for AuthenticationCertificateLevel
impl<'de> Deserialize<'de> for AuthenticationCertificateLevel
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
Source§impl From<AuthenticationCertificateLevel> for CertificateLevel
impl From<AuthenticationCertificateLevel> for CertificateLevel
Source§fn from(val: AuthenticationCertificateLevel) -> Self
fn from(val: AuthenticationCertificateLevel) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AuthenticationCertificateLevel
impl PartialEq for AuthenticationCertificateLevel
Source§fn eq(&self, other: &AuthenticationCertificateLevel) -> bool
fn eq(&self, other: &AuthenticationCertificateLevel) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AuthenticationCertificateLevel
Auto Trait Implementations§
impl Freeze for AuthenticationCertificateLevel
impl RefUnwindSafe for AuthenticationCertificateLevel
impl Send for AuthenticationCertificateLevel
impl Sync for AuthenticationCertificateLevel
impl Unpin for AuthenticationCertificateLevel
impl UnsafeUnpin for AuthenticationCertificateLevel
impl UnwindSafe for AuthenticationCertificateLevel
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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