pub enum WizardTransition {
GoTo(WizardStep),
StayOnCurrent,
Finished,
Cancelled,
}Expand description
Result of applying a step result to the wizard.
Variants§
GoTo(WizardStep)
Move to a specific step.
StayOnCurrent
Stay on the current step (back from first step).
Finished
Wizard completed successfully.
Cancelled
User cancelled.
Trait Implementations§
Source§impl Clone for WizardTransition
impl Clone for WizardTransition
Source§fn clone(&self) -> WizardTransition
fn clone(&self) -> WizardTransition
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 WizardTransition
impl Debug for WizardTransition
Source§impl PartialEq for WizardTransition
impl PartialEq for WizardTransition
impl Eq for WizardTransition
impl StructuralPartialEq for WizardTransition
Auto Trait Implementations§
impl Freeze for WizardTransition
impl RefUnwindSafe for WizardTransition
impl Send for WizardTransition
impl Sync for WizardTransition
impl Unpin for WizardTransition
impl UnsafeUnpin for WizardTransition
impl UnwindSafe for WizardTransition
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.