pub struct Log<'f, M> {
pub message: M,
pub file: Option<&'f str>,
pub line: Option<usize>,
pub col: Option<usize>,
}
Fields§
§message: M
§file: Option<&'f str>
§line: Option<usize>
§col: Option<usize>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'f, M> Freeze for Log<'f, M>where
M: Freeze,
impl<'f, M> RefUnwindSafe for Log<'f, M>where
M: RefUnwindSafe,
impl<'f, M> Send for Log<'f, M>where
M: Send,
impl<'f, M> Sync for Log<'f, M>where
M: Sync,
impl<'f, M> Unpin for Log<'f, M>where
M: Unpin,
impl<'f, M> UnwindSafe for Log<'f, M>where
M: UnwindSafe,
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