pub enum RetentionReason {
KeepLast,
Hourly,
Daily,
Weekly,
Monthly,
Yearly,
}Expand description
Reason why a file was kept by the retention policy.
Variants§
KeepLast
Kept as one of the last N files
Hourly
Kept as the representative for an hour
Daily
Kept as the representative for a day
Weekly
Kept as the representative for a week
Monthly
Kept as the representative for a month
Yearly
Kept as the representative for a year
Trait Implementations§
Source§impl Clone for RetentionReason
impl Clone for RetentionReason
Source§fn clone(&self) -> RetentionReason
fn clone(&self) -> RetentionReason
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 RetentionReason
impl Debug for RetentionReason
Source§impl Display for RetentionReason
impl Display for RetentionReason
Source§impl Hash for RetentionReason
impl Hash for RetentionReason
Source§impl PartialEq for RetentionReason
impl PartialEq for RetentionReason
impl Copy for RetentionReason
impl Eq for RetentionReason
impl StructuralPartialEq for RetentionReason
Auto Trait Implementations§
impl Freeze for RetentionReason
impl RefUnwindSafe for RetentionReason
impl Send for RetentionReason
impl Sync for RetentionReason
impl Unpin for RetentionReason
impl UnwindSafe for RetentionReason
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.