pub struct BootTimes {
pub start: Option<u64>,
pub end: Option<u64>,
pub sidecar_start: Option<u64>,
pub sidecar_end: Option<u64>,
}
Expand description
Boot times reported by the bootloader.
Fields§
§start: Option<u64>
Kernel start time.
end: Option<u64>
Kernel end time.
sidecar_start: Option<u64>
Sidecar start time.
sidecar_end: Option<u64>
Sidecar end time.
Implementations§
Trait Implementations§
impl Copy for BootTimes
impl Eq for BootTimes
impl StructuralPartialEq for BootTimes
Auto Trait Implementations§
impl Freeze for BootTimes
impl RefUnwindSafe for BootTimes
impl Send for BootTimes
impl Sync for BootTimes
impl Unpin for BootTimes
impl UnwindSafe for BootTimes
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