pub struct LogEventData {
pub timestamp: DateTime<Utc>,
pub level: LogEventLevel,
pub module: String,
pub message: String,
}Fields§
§timestamp: DateTime<Utc>§level: LogEventLevel§module: String§message: StringImplementations§
Trait Implementations§
Source§impl Clone for LogEventData
impl Clone for LogEventData
Source§fn clone(&self) -> LogEventData
fn clone(&self) -> LogEventData
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for LogEventData
impl RefUnwindSafe for LogEventData
impl Send for LogEventData
impl Sync for LogEventData
impl Unpin for LogEventData
impl UnwindSafe for LogEventData
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