pub struct Revocation {
pub at: u64,
pub reason: String,
}Expand description
The append-only record that a binding was withdrawn.
Fields§
§at: u64Log sequence of the OpKind::RevokeKey op that withdrew it.
reason: StringOperator-visible reason for the withdrawal.
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 (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 Revocation
impl Debug for Revocation
Source§impl PartialEq for Revocation
impl PartialEq for Revocation
Source§fn eq(&self, other: &Revocation) -> bool
fn eq(&self, other: &Revocation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for Revocation
impl StructuralPartialEq for Revocation
Auto Trait Implementations§
impl Freeze for Revocation
impl RefUnwindSafe for Revocation
impl Send for Revocation
impl Sync for Revocation
impl Unpin for Revocation
impl UnsafeUnpin 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