pub enum RevocationOutcome {
NotRevoked,
Revoked,
Indeterminate,
}Expand description
Outcome of resolving a credential’s revocation status against a status list.
Variants§
NotRevoked
The status bit is clear — the credential is not revoked.
Revoked
The status bit is set — the credential is revoked.
Indeterminate
The credential declares a status that the provided list cannot answer (no/invalid index, index out of range). Callers MUST fail closed.
Trait Implementations§
Source§impl Clone for RevocationOutcome
impl Clone for RevocationOutcome
Source§fn clone(&self) -> RevocationOutcome
fn clone(&self) -> RevocationOutcome
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 RevocationOutcome
Source§impl Debug for RevocationOutcome
impl Debug for RevocationOutcome
impl Eq for RevocationOutcome
Source§impl PartialEq for RevocationOutcome
impl PartialEq for RevocationOutcome
Source§fn eq(&self, other: &RevocationOutcome) -> bool
fn eq(&self, other: &RevocationOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RevocationOutcome
Auto Trait Implementations§
impl Freeze for RevocationOutcome
impl RefUnwindSafe for RevocationOutcome
impl Send for RevocationOutcome
impl Sync for RevocationOutcome
impl Unpin for RevocationOutcome
impl UnsafeUnpin for RevocationOutcome
impl UnwindSafe for RevocationOutcome
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.