pub enum SecretRotationStatus {
Unknown,
Current,
RotationDue,
Rotating,
Revoked,
Expired,
}Expand description
Secret rotation status labels.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for SecretRotationStatus
impl Clone for SecretRotationStatus
Source§fn clone(&self) -> SecretRotationStatus
fn clone(&self) -> SecretRotationStatus
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 SecretRotationStatus
impl Debug for SecretRotationStatus
Source§impl Display for SecretRotationStatus
impl Display for SecretRotationStatus
Source§impl FromStr for SecretRotationStatus
impl FromStr for SecretRotationStatus
Source§type Err = SecretParseError
type Err = SecretParseError
The associated error which can be returned from parsing.
Source§fn from_str(
input: &str,
) -> Result<SecretRotationStatus, <SecretRotationStatus as FromStr>::Err>
fn from_str( input: &str, ) -> Result<SecretRotationStatus, <SecretRotationStatus as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for SecretRotationStatus
impl Hash for SecretRotationStatus
Source§impl Ord for SecretRotationStatus
impl Ord for SecretRotationStatus
Source§fn cmp(&self, other: &SecretRotationStatus) -> Ordering
fn cmp(&self, other: &SecretRotationStatus) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SecretRotationStatus
impl PartialEq for SecretRotationStatus
Source§fn eq(&self, other: &SecretRotationStatus) -> bool
fn eq(&self, other: &SecretRotationStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for SecretRotationStatus
impl PartialOrd for SecretRotationStatus
impl Copy for SecretRotationStatus
impl Eq for SecretRotationStatus
impl StructuralPartialEq for SecretRotationStatus
Auto Trait Implementations§
impl Freeze for SecretRotationStatus
impl RefUnwindSafe for SecretRotationStatus
impl Send for SecretRotationStatus
impl Sync for SecretRotationStatus
impl Unpin for SecretRotationStatus
impl UnsafeUnpin for SecretRotationStatus
impl UnwindSafe for SecretRotationStatus
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