pub struct KeyDeadlines {
pub renew_at: LoggableTime,
pub soft_terminate_at: LoggableTime,
pub hard_terminate_at: LoggableTime,
}
Fields§
§renew_at: LoggableTime
When the key should be renewed.
soft_terminate_at: LoggableTime
When the backend should be soft-terminated if the key could not be renewed.
hard_terminate_at: LoggableTime
When the backend should be hard-terminated if the key could not be renewed.
Trait Implementations§
Source§impl Clone for KeyDeadlines
impl Clone for KeyDeadlines
Source§fn clone(&self) -> KeyDeadlines
fn clone(&self) -> KeyDeadlines
Returns a duplicate of the value. Read more
1.0.0 · 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 KeyDeadlines
impl Debug for KeyDeadlines
Source§impl<'de> Deserialize<'de> for KeyDeadlines
impl<'de> Deserialize<'de> for KeyDeadlines
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
Source§impl PartialEq for KeyDeadlines
impl PartialEq for KeyDeadlines
Source§impl Serialize for KeyDeadlines
impl Serialize for KeyDeadlines
Source§impl Structable for KeyDeadlines
impl Structable for KeyDeadlines
Source§fn definition(&self) -> StructDef<'_>
fn definition(&self) -> StructDef<'_>
Returns the struct’s definition. Read more
Source§impl Valuable for KeyDeadlines
impl Valuable for KeyDeadlines
impl StructuralPartialEq for KeyDeadlines
Auto Trait Implementations§
impl Freeze for KeyDeadlines
impl RefUnwindSafe for KeyDeadlines
impl Send for KeyDeadlines
impl Sync for KeyDeadlines
impl Unpin for KeyDeadlines
impl UnwindSafe for KeyDeadlines
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