pub enum RollingFrequency {
EveryDay,
EveryHour,
EveryMinute,
}
Expand description
Determines how often a file should be rolled over
Variants
EveryDay
EveryHour
EveryMinute
Implementations
Trait Implementations
sourceimpl Clone for RollingFrequency
impl Clone for RollingFrequency
sourcefn clone(&self) -> RollingFrequency
fn clone(&self) -> RollingFrequency
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for RollingFrequency
impl Debug for RollingFrequency
sourceimpl PartialEq<RollingFrequency> for RollingFrequency
impl PartialEq<RollingFrequency> for RollingFrequency
impl Copy for RollingFrequency
impl Eq for RollingFrequency
impl StructuralEq 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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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