pub struct LogRecord {
pub datetime: OffsetDateTime,
pub channel: String,
pub level: Level,
pub message: String,
pub context: Context,
pub extra: Context,
}Fields§
§datetime: OffsetDateTime§channel: String§level: Level§message: String§context: Context§extra: ContextTrait Implementations§
Auto Trait Implementations§
impl Freeze for LogRecord
impl !RefUnwindSafe for LogRecord
impl Send for LogRecord
impl Sync for LogRecord
impl Unpin for LogRecord
impl UnsafeUnpin for LogRecord
impl !UnwindSafe for LogRecord
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