pub enum StepperState {
Initializing,
Running,
Closing,
}
Expand description
State of the stepper
Variants§
Initializing
The stepper is being initialized.
Running
Initialization is complete, and the stepper is running.
Closing
The stepper is being removed.
Trait Implementations§
Source§impl Clone for StepperState
impl Clone for StepperState
Source§fn clone(&self) -> StepperState
fn clone(&self) -> StepperState
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 StepperState
impl Debug for StepperState
Source§impl PartialEq for StepperState
impl PartialEq for StepperState
impl Copy for StepperState
impl StructuralPartialEq for StepperState
Auto Trait Implementations§
impl Freeze for StepperState
impl RefUnwindSafe for StepperState
impl Send for StepperState
impl Sync for StepperState
impl Unpin for StepperState
impl UnwindSafe for StepperState
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