pub enum RotationStatus {
Valid {
days_remaining: u64,
},
Recommended {
age_days: u64,
},
Required {
age_days: u64,
},
}Available on crate feature
governance only.Variants§
Trait Implementations§
Source§impl Clone for RotationStatus
impl Clone for RotationStatus
Source§fn clone(&self) -> RotationStatus
fn clone(&self) -> RotationStatus
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 RotationStatus
impl Debug for RotationStatus
Source§impl<'de> Deserialize<'de> for RotationStatus
impl<'de> Deserialize<'de> for RotationStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RotationStatus
impl RefUnwindSafe for RotationStatus
impl Send for RotationStatus
impl Sync for RotationStatus
impl Unpin for RotationStatus
impl UnsafeUnpin for RotationStatus
impl UnwindSafe for RotationStatus
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