pub enum AppState {
Prepared,
Launched,
Running,
Finished,
}Expand description
Lifecycle state of a DomainApplication.
Variants§
Prepared
Plan is prepared (D&C §9.1.1 preparePlan).
Launched
startLaunch has been called.
Running
finishLaunch has completed.
Finished
destroyApplication has completed.
Trait Implementations§
impl Copy for AppState
impl Eq for AppState
impl StructuralPartialEq for AppState
Auto Trait Implementations§
impl Freeze for AppState
impl RefUnwindSafe for AppState
impl Send for AppState
impl Sync for AppState
impl Unpin for AppState
impl UnsafeUnpin for AppState
impl UnwindSafe for AppState
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