pub enum RollingFrequency {
EveryDay,
EveryHour,
EveryMinute,
}
Expand description
Determines how often a file should be rolled over
Variants§
Implementations§
Trait Implementations§
source§impl Clone for RollingFrequency
impl Clone for RollingFrequency
source§fn clone(&self) -> RollingFrequency
fn clone(&self) -> RollingFrequency
Returns a copy 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 RollingFrequency
impl Debug for RollingFrequency
source§impl PartialEq for RollingFrequency
impl PartialEq for RollingFrequency
source§fn eq(&self, other: &RollingFrequency) -> bool
fn eq(&self, other: &RollingFrequency) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for RollingFrequency
impl Eq for RollingFrequency
impl StructuralPartialEq for RollingFrequency
Auto Trait Implementations§
impl RefUnwindSafe for RollingFrequency
impl Send for RollingFrequency
impl Sync for RollingFrequency
impl Unpin for RollingFrequency
impl UnwindSafe for RollingFrequency
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