pub enum TimeFreshness {
Fresh,
Stale,
Expired,
}Expand description
Freshness outcome for the pipeline.
Variants§
Trait Implementations§
Source§impl Clone for TimeFreshness
impl Clone for TimeFreshness
Source§fn clone(&self) -> TimeFreshness
fn clone(&self) -> TimeFreshness
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 moreimpl Copy for TimeFreshness
Source§impl Debug for TimeFreshness
impl Debug for TimeFreshness
impl Eq for TimeFreshness
Source§impl PartialEq for TimeFreshness
impl PartialEq for TimeFreshness
Source§fn eq(&self, other: &TimeFreshness) -> bool
fn eq(&self, other: &TimeFreshness) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TimeFreshness
Auto Trait Implementations§
impl Freeze for TimeFreshness
impl RefUnwindSafe for TimeFreshness
impl Send for TimeFreshness
impl Sync for TimeFreshness
impl Unpin for TimeFreshness
impl UnsafeUnpin for TimeFreshness
impl UnwindSafe for TimeFreshness
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