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