pub enum Expiry {
Unspecified,
Delay(Duration),
DateTime(SystemTime),
}Expand description
An expiry value. Either not specified (the default), a delay relative to the time the call is made, or a specific date time.
Variants
Unspecified
Unspecified. Will not try to override the Agent’s value, which might itself have its own default value.
Delay(Duration)
A duration that will be added to the system time when the call is made.
DateTime(SystemTime)
A specific date and time to use for the expiry of the request.
Implementations
Trait Implementations
sourceimpl From<SystemTime> for Expiry
impl From<SystemTime> for Expiry
sourcefn from(dt: SystemTime) -> Self
fn from(dt: SystemTime) -> Self
Converts to this type from the input type.
sourceimpl Ord for Expiry
impl Ord for Expiry
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialOrd<Expiry> for Expiry
impl PartialOrd<Expiry> for Expiry
sourcefn partial_cmp(&self, other: &Expiry) -> Option<Ordering>
fn partial_cmp(&self, other: &Expiry) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Eq for Expiry
impl StructuralEq for Expiry
impl StructuralPartialEq for Expiry
Auto Trait Implementations
impl RefUnwindSafe for Expiry
impl Send for Expiry
impl Sync for Expiry
impl Unpin for Expiry
impl UnwindSafe for Expiry
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more