pub enum RevocationStatus {
NotChecked,
Valid,
Revoked,
CheckFailed,
}Expand description
Status of revocation checking for a credential.
Variants§
NotChecked
Revocation was not checked (no status mechanism configured).
Valid
Revocation was checked and the credential is valid (not revoked).
Revoked
The credential has been revoked.
CheckFailed
Revocation check failed (e.g., status endpoint unreachable).
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 · 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 RevocationStatus
impl Debug for RevocationStatus
Source§impl<'de> Deserialize<'de> for RevocationStatus
impl<'de> Deserialize<'de> for RevocationStatus
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 RevocationStatus
impl PartialEq for RevocationStatus
Source§impl Serialize for RevocationStatus
impl Serialize for RevocationStatus
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 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