pub struct DebugRecord {
pub fmt_id: u32,
pub args: [u32; 3],
}Expand description
A single PRINTF event decoded out of the debug-log buffer.
Fields§
§fmt_id: u32Format-string id - resolved by the host against its registered format table.
args: [u32; 3]Three argument words in the order the kernel wrote them.
Trait Implementations§
Source§impl Clone for DebugRecord
impl Clone for DebugRecord
Source§fn clone(&self) -> DebugRecord
fn clone(&self) -> DebugRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DebugRecord
Source§impl Debug for DebugRecord
impl Debug for DebugRecord
impl Eq for DebugRecord
Source§impl PartialEq for DebugRecord
impl PartialEq for DebugRecord
Source§fn eq(&self, other: &DebugRecord) -> bool
fn eq(&self, other: &DebugRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DebugRecord
Auto Trait Implementations§
impl Freeze for DebugRecord
impl RefUnwindSafe for DebugRecord
impl Send for DebugRecord
impl Sync for DebugRecord
impl Unpin for DebugRecord
impl UnsafeUnpin for DebugRecord
impl UnwindSafe for DebugRecord
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.