pub struct DebugLogEntry {
pub msg: [u8; 64],
pub len: usize,
pub stage: u32,
}Expand description
A single debug log entry
Fields§
§msg: [u8; 64]Message content (null-terminated or full)
len: usizeActual length of message
stage: u32Stage number when this was logged
Trait Implementations§
Source§impl Clone for DebugLogEntry
impl Clone for DebugLogEntry
Source§fn clone(&self) -> DebugLogEntry
fn clone(&self) -> DebugLogEntry
Returns a copy 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 Default for DebugLogEntry
impl Default for DebugLogEntry
impl Copy for DebugLogEntry
Auto Trait Implementations§
impl Freeze for DebugLogEntry
impl RefUnwindSafe for DebugLogEntry
impl Send for DebugLogEntry
impl Sync for DebugLogEntry
impl Unpin for DebugLogEntry
impl UnwindSafe for DebugLogEntry
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