#[repr(C)]pub struct LogRecord {
pub level: u32,
pub ptr: u32,
pub len: u32,
}Expand description
One queued log record: a level, and a string in the guest’s memory.
Fields§
§level: u32§ptr: u32§len: u32Trait Implementations§
impl Copy for LogRecord
impl Eq for LogRecord
impl StructuralPartialEq for LogRecord
Auto Trait Implementations§
impl Freeze for LogRecord
impl RefUnwindSafe for LogRecord
impl Send for LogRecord
impl Sync for LogRecord
impl Unpin for LogRecord
impl UnsafeUnpin for LogRecord
impl UnwindSafe for LogRecord
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