pub struct EfiDiagnosticsLog<'a> {
pub debug_level: u32,
pub ticks: u64,
pub phase: u16,
pub message: &'a str,
}
Expand description
Represents a processed log entry from the EFI diagnostics buffer
Fields§
§debug_level: u32
The debug level of the log entry
ticks: u64
Hypervisor reference ticks elapsed from UEFI
phase: u16
The boot phase that produced this log entry
message: &'a str
The log message itself
Trait Implementations§
Source§impl<'a> Clone for EfiDiagnosticsLog<'a>
impl<'a> Clone for EfiDiagnosticsLog<'a>
Source§fn clone(&self) -> EfiDiagnosticsLog<'a>
fn clone(&self) -> EfiDiagnosticsLog<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for EfiDiagnosticsLog<'a>
impl<'a> RefUnwindSafe for EfiDiagnosticsLog<'a>
impl<'a> Send for EfiDiagnosticsLog<'a>
impl<'a> Sync for EfiDiagnosticsLog<'a>
impl<'a> Unpin for EfiDiagnosticsLog<'a>
impl<'a> UnwindSafe for EfiDiagnosticsLog<'a>
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