pub struct LogEntry {
pub log: String,
pub timestamp: u64,
pub log_type: LogType,
}
Expand description
A log entry
Fields§
§log: String
§timestamp: u64
§log_type: LogType
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for LogEntry
impl Send for LogEntry
impl Sync for LogEntry
impl Unpin for LogEntry
impl UnwindSafe for LogEntry
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