pub enum RevokeStatus {
Revoked,
NotFound,
Unauthorized,
}Expand description
Revocation outcome.
Variants§
Revoked
Certificate was revoked successfully.
NotFound
Certificate not found in CA records.
Possession proof failed — requester does not own this certificate.
Trait Implementations§
Source§impl Clone for RevokeStatus
impl Clone for RevokeStatus
Source§fn clone(&self) -> RevokeStatus
fn clone(&self) -> RevokeStatus
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 RevokeStatus
impl Debug for RevokeStatus
Source§impl<'de> Deserialize<'de> for RevokeStatus
impl<'de> Deserialize<'de> for RevokeStatus
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 PartialEq for RevokeStatus
impl PartialEq for RevokeStatus
Source§impl Serialize for RevokeStatus
impl Serialize for RevokeStatus
impl StructuralPartialEq for RevokeStatus
Auto Trait Implementations§
impl Freeze for RevokeStatus
impl RefUnwindSafe for RevokeStatus
impl Send for RevokeStatus
impl Sync for RevokeStatus
impl Unpin for RevokeStatus
impl UnwindSafe for RevokeStatus
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