pub struct StateUnits { /* private fields */ }
Expand description
A set of state units.
Implementations§
Source§impl StateUnits
impl StateUnits
Sourcepub fn inspector(&self) -> StateUnitsInspector
pub fn inspector(&self) -> StateUnitsInspector
Returns an inspector that can be used to inspect the state units while state transitions are in process.
Sourcepub fn add(&self, name: impl Into<Arc<str>>) -> UnitBuilder<'_>
pub fn add(&self, name: impl Into<Arc<str>>) -> UnitBuilder<'_>
Save and restore will use name
as the save ID, so this forms part of
the saved state.
Note that the added unit will not be running after it is built/spawned,
even if the other units are running. Call
StateUnits::start_stopped_units
when finished adding units.
Sourcepub fn is_running(&self) -> bool
pub fn is_running(&self) -> bool
Check if state units are currently running.
Sourcepub async fn start_stopped_units(&mut self)
pub async fn start_stopped_units(&mut self)
Starts any units that are individually stopped, because they were added
via StateUnits::add
while the VM was running.
Does nothing if all units are stopped, via StateUnits::stop
.
Sourcepub async fn reset(&mut self) -> Result<(), StateTransitionError>
pub async fn reset(&mut self) -> Result<(), StateTransitionError>
Resets all the state units.
Panics if running.
Sourcepub async fn save(
&mut self,
) -> Result<Vec<SavedStateUnit>, StateTransitionError>
pub async fn save( &mut self, ) -> Result<Vec<SavedStateUnit>, StateTransitionError>
Saves all the state units.
Panics if running.
Sourcepub async fn restore(
&mut self,
states: Vec<SavedStateUnit>,
) -> Result<(), StateTransitionError>
pub async fn restore( &mut self, states: Vec<SavedStateUnit>, ) -> Result<(), StateTransitionError>
Restores all the state units.
Panics if running.
Trait Implementations§
Source§impl Debug for StateUnits
impl Debug for StateUnits
Auto Trait Implementations§
impl Freeze for StateUnits
impl !RefUnwindSafe for StateUnits
impl Send for StateUnits
impl Sync for StateUnits
impl Unpin for StateUnits
impl !UnwindSafe for StateUnits
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