pub struct AppBootCompleted {
pub duration_ms: f64,
}Expand description
Emitted once initial app boot has mounted the root and scheduled
post-mount work. duration_ms covers synchronous boot only; deferred
after_mount callbacks are not included.
Fields§
§duration_ms: f64Trait Implementations§
Source§impl Clone for AppBootCompleted
impl Clone for AppBootCompleted
Source§fn clone(&self) -> AppBootCompleted
fn clone(&self) -> AppBootCompleted
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 AppBootCompleted
Auto Trait Implementations§
impl Freeze for AppBootCompleted
impl RefUnwindSafe for AppBootCompleted
impl Send for AppBootCompleted
impl Sync for AppBootCompleted
impl Unpin for AppBootCompleted
impl UnsafeUnpin for AppBootCompleted
impl UnwindSafe for AppBootCompleted
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