pub struct LogInfo {
    pub line: u32,
    pub level: Level,
    pub text: String,
    pub file: Option<Box<str>>,
    pub module: Option<Box<str>>,
}Fields§
§line: u32§level: Level§text: String§file: Option<Box<str>>§module: Option<Box<str>>Trait Implementations§
impl StructuralPartialEq for LogInfo
Auto Trait Implementations§
impl Freeze for LogInfo
impl RefUnwindSafe for LogInfo
impl Send for LogInfo
impl Sync for LogInfo
impl Unpin for LogInfo
impl UnwindSafe for LogInfo
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