pub struct StartupSnapshot {
pub status: StartupStatus,
pub phase: String,
pub started_at_ms: u64,
pub attempt_id: String,
pub last_error: Option<String>,
pub elapsed_ms: u64,
}Fields§
§status: StartupStatus§phase: String§started_at_ms: u64§attempt_id: String§last_error: Option<String>§elapsed_ms: u64Trait Implementations§
Source§impl Clone for StartupSnapshot
impl Clone for StartupSnapshot
Source§fn clone(&self) -> StartupSnapshot
fn clone(&self) -> StartupSnapshot
Returns a duplicate 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 Freeze for StartupSnapshot
impl RefUnwindSafe for StartupSnapshot
impl Send for StartupSnapshot
impl Sync for StartupSnapshot
impl Unpin for StartupSnapshot
impl UnsafeUnpin for StartupSnapshot
impl UnwindSafe for StartupSnapshot
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