pub struct LogChunk {
pub attempt: u32,
pub sequence: u64,
pub stream: String,
pub phase: String,
pub level: Option<String>,
pub message: String,
}Fields§
§attempt: u32§sequence: u64§stream: String§phase: String§level: Option<String>§message: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for LogChunk
impl RefUnwindSafe for LogChunk
impl Send for LogChunk
impl Sync for LogChunk
impl Unpin for LogChunk
impl UnsafeUnpin for LogChunk
impl UnwindSafe for LogChunk
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