pub struct ConsoleEntry {
pub severity: ConsoleSeverity,
pub message: String,
pub index: usize,
}Expand description
A single log entry in the debug console.
Fields§
§severity: ConsoleSeverity§message: String§index: usizeTrait Implementations§
Source§impl Clone for ConsoleEntry
impl Clone for ConsoleEntry
Source§fn clone(&self) -> ConsoleEntry
fn clone(&self) -> ConsoleEntry
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 ConsoleEntry
impl RefUnwindSafe for ConsoleEntry
impl Send for ConsoleEntry
impl Sync for ConsoleEntry
impl Unpin for ConsoleEntry
impl UnsafeUnpin for ConsoleEntry
impl UnwindSafe for ConsoleEntry
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