pub enum AvcRevocationReason {
IssuerRevoked,
PrincipalRevoked,
ExpiredAuthority,
CompromisedKey,
PolicyViolation,
SybilChallenge,
EmergencyStop,
Superseded,
Other(String),
}Variants§
IssuerRevoked
PrincipalRevoked
ExpiredAuthority
CompromisedKey
PolicyViolation
SybilChallenge
EmergencyStop
Superseded
Other(String)
Trait Implementations§
Source§impl Clone for AvcRevocationReason
impl Clone for AvcRevocationReason
Source§fn clone(&self) -> AvcRevocationReason
fn clone(&self) -> AvcRevocationReason
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 moreSource§impl Debug for AvcRevocationReason
impl Debug for AvcRevocationReason
Source§impl<'de> Deserialize<'de> for AvcRevocationReason
impl<'de> Deserialize<'de> for AvcRevocationReason
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 AvcRevocationReason
Source§impl PartialEq for AvcRevocationReason
impl PartialEq for AvcRevocationReason
Source§fn eq(&self, other: &AvcRevocationReason) -> bool
fn eq(&self, other: &AvcRevocationReason) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AvcRevocationReason
impl Serialize for AvcRevocationReason
impl StructuralPartialEq for AvcRevocationReason
Auto Trait Implementations§
impl Freeze for AvcRevocationReason
impl RefUnwindSafe for AvcRevocationReason
impl Send for AvcRevocationReason
impl Sync for AvcRevocationReason
impl Unpin for AvcRevocationReason
impl UnsafeUnpin for AvcRevocationReason
impl UnwindSafe for AvcRevocationReason
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