pub enum RevocationStatus {
Good,
GraceDowngrade,
Revoked,
}Expand description
Revocation status of a signer as seen by the pipeline.
Variants§
Good
Not revoked; CRL fresh.
GraceDowngrade
Not revoked, but the CRL is within the grace window — soft.
Revoked
Revoked — hard failure.
Trait Implementations§
Source§impl Clone for RevocationStatus
impl Clone for RevocationStatus
Source§fn clone(&self) -> RevocationStatus
fn clone(&self) -> RevocationStatus
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 RevocationStatus
Source§impl Debug for RevocationStatus
impl Debug for RevocationStatus
impl Eq for RevocationStatus
Source§impl PartialEq for RevocationStatus
impl PartialEq for RevocationStatus
Source§fn eq(&self, other: &RevocationStatus) -> bool
fn eq(&self, other: &RevocationStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RevocationStatus
Auto Trait Implementations§
impl Freeze for RevocationStatus
impl RefUnwindSafe for RevocationStatus
impl Send for RevocationStatus
impl Sync for RevocationStatus
impl Unpin for RevocationStatus
impl UnsafeUnpin for RevocationStatus
impl UnwindSafe for RevocationStatus
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