pub enum LogLifecycleEvent {
Created {
active: File,
reason: LogLifecycleReason,
},
Rotated {
archived: File,
active: File,
},
RetainedDeleted {
files: Vec<File>,
},
}Variants§
Trait Implementations§
Source§impl Clone for LogLifecycleEvent
impl Clone for LogLifecycleEvent
Source§fn clone(&self) -> LogLifecycleEvent
fn clone(&self) -> LogLifecycleEvent
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 moreAuto Trait Implementations§
impl Freeze for LogLifecycleEvent
impl RefUnwindSafe for LogLifecycleEvent
impl Send for LogLifecycleEvent
impl Sync for LogLifecycleEvent
impl Unpin for LogLifecycleEvent
impl UnsafeUnpin for LogLifecycleEvent
impl UnwindSafe for LogLifecycleEvent
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