pub struct ContinuedEvent {
pub part: u8,
}
Expand description
Fired when the log file is getting split into multiple files. The logs will continue in a new .log file with the given part number.
Fields§
§part: u8
The new part number for the next log file.
Trait Implementations§
Source§impl Clone for ContinuedEvent
impl Clone for ContinuedEvent
Source§fn clone(&self) -> ContinuedEvent
fn clone(&self) -> ContinuedEvent
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 ContinuedEvent
impl Debug for ContinuedEvent
Source§impl<'de> Deserialize<'de> for ContinuedEvent
impl<'de> Deserialize<'de> for ContinuedEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ContinuedEvent
impl PartialEq for ContinuedEvent
Source§impl Serialize for ContinuedEvent
impl Serialize for ContinuedEvent
impl StructuralPartialEq for ContinuedEvent
Auto Trait Implementations§
impl Freeze for ContinuedEvent
impl RefUnwindSafe for ContinuedEvent
impl Send for ContinuedEvent
impl Sync for ContinuedEvent
impl Unpin for ContinuedEvent
impl UnwindSafe for ContinuedEvent
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