pub struct LogItem {
pub level: LogLevel,
pub text: String,
pub count: i32,
}
Expand description
Non canonical structure used for subscribed callback
Fields§
§level: LogLevel
§text: String
§count: i32
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LogItem
impl RefUnwindSafe for LogItem
impl Send for LogItem
impl Sync for LogItem
impl Unpin for LogItem
impl UnwindSafe for LogItem
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