pub struct DebugEntry {
pub level: DebugLevel,
pub message: String,
pub line: Option<usize>,
pub column: Option<usize>,
}Expand description
A single debug log entry
Fields§
§level: DebugLevel§message: String§line: Option<usize>§column: Option<usize>Trait Implementations§
Source§impl Clone for DebugEntry
impl Clone for DebugEntry
Source§fn clone(&self) -> DebugEntry
fn clone(&self) -> DebugEntry
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 moreSource§impl Debug for DebugEntry
impl Debug for DebugEntry
Source§impl PartialEq for DebugEntry
impl PartialEq for DebugEntry
impl StructuralPartialEq for DebugEntry
Auto Trait Implementations§
impl Freeze for DebugEntry
impl RefUnwindSafe for DebugEntry
impl Send for DebugEntry
impl Sync for DebugEntry
impl Unpin for DebugEntry
impl UnwindSafe for DebugEntry
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