pub struct RevocationNotice {
pub credential_hash: String,
pub did: String,
pub reason: String,
pub effective_at: u64,
}Expand description
Notice: Credential revocation push (Identity → *)
Fields§
§credential_hash: String§did: String§reason: String§effective_at: u64Trait Implementations§
Source§impl Clone for RevocationNotice
impl Clone for RevocationNotice
Source§fn clone(&self) -> RevocationNotice
fn clone(&self) -> RevocationNotice
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 moreSource§impl Debug for RevocationNotice
impl Debug for RevocationNotice
Source§impl<'de> Deserialize<'de> for RevocationNotice
impl<'de> Deserialize<'de> for RevocationNotice
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 RevocationNotice
impl RefUnwindSafe for RevocationNotice
impl Send for RevocationNotice
impl Sync for RevocationNotice
impl Unpin for RevocationNotice
impl UnsafeUnpin for RevocationNotice
impl UnwindSafe for RevocationNotice
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