pub struct RevocationSpec {
pub revision: u64,
pub minimum_authorization_epoch: u64,
pub minimum_role_key_epoch: u64,
pub issued_at: u64,
}Expand description
Monotonic floors signed into a revocation state.
Fields§
§revision: u64Monotonic state revision.
Grants below this authorization epoch are invalid.
minimum_role_key_epoch: u64Grants below this role-key epoch are invalid.
issued_at: u64Issuance time in Unix seconds.
Trait Implementations§
Source§impl Clone for RevocationSpec
impl Clone for RevocationSpec
Source§fn clone(&self) -> RevocationSpec
fn clone(&self) -> RevocationSpec
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 RevocationSpec
Source§impl Debug for RevocationSpec
impl Debug for RevocationSpec
impl Eq for RevocationSpec
Source§impl PartialEq for RevocationSpec
impl PartialEq for RevocationSpec
impl StructuralPartialEq for RevocationSpec
Auto Trait Implementations§
impl Freeze for RevocationSpec
impl RefUnwindSafe for RevocationSpec
impl Send for RevocationSpec
impl Sync for RevocationSpec
impl Unpin for RevocationSpec
impl UnsafeUnpin for RevocationSpec
impl UnwindSafe for RevocationSpec
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