pub struct ExpiresAfter {
pub anchor: Option<Anchor>,
pub minutes: Option<i64>,
}
Expand description
The container will expire after this time period. The anchor is the reference point for the expiration. The minutes is the number of minutes after the anchor before the container expires.
Fields§
§anchor: Option<Anchor>
The reference point for the expiration.
minutes: Option<i64>
The number of minutes after the anchor before the container expires.
Implementations§
Trait Implementations§
Source§impl Clone for ExpiresAfter
impl Clone for ExpiresAfter
Source§fn clone(&self) -> ExpiresAfter
fn clone(&self) -> ExpiresAfter
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 ExpiresAfter
impl Debug for ExpiresAfter
Source§impl Default for ExpiresAfter
impl Default for ExpiresAfter
Source§fn default() -> ExpiresAfter
fn default() -> ExpiresAfter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExpiresAfter
impl<'de> Deserialize<'de> for ExpiresAfter
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 ExpiresAfter
impl PartialEq for ExpiresAfter
Source§impl Serialize for ExpiresAfter
impl Serialize for ExpiresAfter
impl Copy for ExpiresAfter
impl StructuralPartialEq for ExpiresAfter
Auto Trait Implementations§
impl Freeze for ExpiresAfter
impl RefUnwindSafe for ExpiresAfter
impl Send for ExpiresAfter
impl Sync for ExpiresAfter
impl Unpin for ExpiresAfter
impl UnwindSafe for ExpiresAfter
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