pub struct Log {
pub timestamp: f64,
pub level: LogLevel,
pub message: String,
pub file_name: String,
pub line_number: u32,
}
Expand description
Representation of a parsed Postform log.
Fields§
§timestamp: f64
§level: LogLevel
§message: String
§file_name: String
§line_number: u32
Auto Trait Implementations§
impl Freeze for Log
impl RefUnwindSafe for Log
impl Send for Log
impl Sync for Log
impl Unpin for Log
impl UnwindSafe for Log
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