pub enum SecuritySecretStatus {
Active,
Deprecated,
Revoked,
}Expand description
Rotation lifecycle of secret material.
Variants§
Active
Secret may issue and validate new credentials.
Deprecated
Secret may validate existing credentials but should not issue new ones.
Revoked
Secret must not be accepted.
Implementations§
Trait Implementations§
Source§impl Clone for SecuritySecretStatus
impl Clone for SecuritySecretStatus
Source§fn clone(&self) -> SecuritySecretStatus
fn clone(&self) -> SecuritySecretStatus
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 SecuritySecretStatus
impl Debug for SecuritySecretStatus
impl Eq for SecuritySecretStatus
Source§impl PartialEq for SecuritySecretStatus
impl PartialEq for SecuritySecretStatus
impl StructuralPartialEq for SecuritySecretStatus
Auto Trait Implementations§
impl Freeze for SecuritySecretStatus
impl RefUnwindSafe for SecuritySecretStatus
impl Send for SecuritySecretStatus
impl Sync for SecuritySecretStatus
impl Unpin for SecuritySecretStatus
impl UnsafeUnpin for SecuritySecretStatus
impl UnwindSafe for SecuritySecretStatus
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