pub enum ProfileGenerationStatus {
Active,
Retired,
Compromised,
}Expand description
Lifecycle state of one profile key generation.
Variants§
Active
The generation currently used for new operations.
Retired
The generation was replaced normally and remains part of history.
Compromised
The generation must no longer be trusted because its key was exposed.
Trait Implementations§
Source§impl Clone for ProfileGenerationStatus
impl Clone for ProfileGenerationStatus
Source§fn clone(&self) -> ProfileGenerationStatus
fn clone(&self) -> ProfileGenerationStatus
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 ProfileGenerationStatus
Source§impl Debug for ProfileGenerationStatus
impl Debug for ProfileGenerationStatus
impl Eq for ProfileGenerationStatus
Source§impl PartialEq for ProfileGenerationStatus
impl PartialEq for ProfileGenerationStatus
impl StructuralPartialEq for ProfileGenerationStatus
Auto Trait Implementations§
impl Freeze for ProfileGenerationStatus
impl RefUnwindSafe for ProfileGenerationStatus
impl Send for ProfileGenerationStatus
impl Sync for ProfileGenerationStatus
impl Unpin for ProfileGenerationStatus
impl UnsafeUnpin for ProfileGenerationStatus
impl UnwindSafe for ProfileGenerationStatus
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