pub struct LogItemLocation {
pub level: LogLevel,
pub file_name: String,
pub start: Position,
pub end: Position,
pub message: String,
pub explanation: Option<String>,
}Fields§
§level: LogLevel§file_name: String§start: Position§end: Position§message: String§explanation: Option<String>Trait Implementations§
Source§impl Clone for LogItemLocation
impl Clone for LogItemLocation
Source§fn clone(&self) -> LogItemLocation
fn clone(&self) -> LogItemLocation
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for LogItemLocation
impl RefUnwindSafe for LogItemLocation
impl Send for LogItemLocation
impl Sync for LogItemLocation
impl Unpin for LogItemLocation
impl UnwindSafe for LogItemLocation
Blanket Implementations§
Source§impl<T> ActionTrait for T
impl<T> ActionTrait for T
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