pub struct Revocation {
pub type_: String,
pub version: String,
pub did: String,
pub revoked_key: String,
pub revocation_id: Option<String>,
pub reason: RevocationReason,
pub effective_at: i64,
pub signature: Option<String>,
}Expand description
A key revocation event.
Fields§
§type_: StringType identifier.
version: StringProtocol version.
did: StringThe DID this revocation is for.
revoked_key: StringKey being revoked (key ID).
revocation_id: Option<String>Revocation ID (matches delegation revocation_id if revoking a delegation).
reason: RevocationReasonReason for revocation.
effective_at: i64When this revocation takes effect (unix ms).
signature: Option<String>Signature from root key.
Implementations§
Source§impl Revocation
impl Revocation
Sourcepub fn new(did: Did, revoked_key: String, reason: RevocationReason) -> Self
pub fn new(did: Did, revoked_key: String, reason: RevocationReason) -> Self
Create a new unsigned revocation.
Sourcepub fn with_revocation_id(self, id: String) -> Self
pub fn with_revocation_id(self, id: String) -> Self
Set revocation ID (for revoking delegations).
Sourcepub fn is_effective_at(&self, time: DateTime<Utc>) -> bool
pub fn is_effective_at(&self, time: DateTime<Utc>) -> bool
Check if this revocation is effective at a given time.
Trait Implementations§
Source§impl Clone for Revocation
impl Clone for Revocation
Source§fn clone(&self) -> Revocation
fn clone(&self) -> Revocation
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 Revocation
impl Debug for Revocation
Source§impl<'de> Deserialize<'de> for Revocation
impl<'de> Deserialize<'de> for Revocation
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
Auto Trait Implementations§
impl Freeze for Revocation
impl RefUnwindSafe for Revocation
impl Send for Revocation
impl Sync for Revocation
impl Unpin for Revocation
impl UnwindSafe for Revocation
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