pub struct BootTimeEstimate {
pub source: BootTimeSource,
pub boot_epoch_secs: i64,
}Expand description
A single boot time estimate from a specific source.
Fields§
§source: BootTimeSourceWhere this estimate came from.
boot_epoch_secs: i64Unix epoch seconds of the estimated boot time.
Trait Implementations§
Source§impl Clone for BootTimeEstimate
impl Clone for BootTimeEstimate
Source§fn clone(&self) -> BootTimeEstimate
fn clone(&self) -> BootTimeEstimate
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 moreAuto Trait Implementations§
impl Freeze for BootTimeEstimate
impl RefUnwindSafe for BootTimeEstimate
impl Send for BootTimeEstimate
impl Sync for BootTimeEstimate
impl Unpin for BootTimeEstimate
impl UnsafeUnpin for BootTimeEstimate
impl UnwindSafe for BootTimeEstimate
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