#[repr(u32)]pub enum SystemState {
EarlyInit = 1,
CoreStartup = 2,
CoreReady = 3,
AppsInit = 4,
Operational = 5,
Shutdown = 6,
}Expand description
The overall state of the cFE system, used for startup synchronization.
Variants§
EarlyInit = 1
Single-threaded mode during early cFE setup.
CoreStartup = 2
Core cFE apps are starting.
CoreReady = 3
Core apps are ready, external apps/libraries are starting.
AppsInit = 4
External apps have completed early initialization.
Operational = 5
Normal operation; all apps are running.
Shutdown = 6
Shutdown state.
Trait Implementations§
Source§impl Clone for SystemState
impl Clone for SystemState
Source§fn clone(&self) -> SystemState
fn clone(&self) -> SystemState
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 moreSource§impl Debug for SystemState
impl Debug for SystemState
Source§impl PartialEq for SystemState
impl PartialEq for SystemState
impl Copy for SystemState
impl Eq for SystemState
impl StructuralPartialEq for SystemState
Auto Trait Implementations§
impl Freeze for SystemState
impl RefUnwindSafe for SystemState
impl Send for SystemState
impl Sync for SystemState
impl Unpin for SystemState
impl UnsafeUnpin for SystemState
impl UnwindSafe for SystemState
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