pub struct WizardPlan {
pub meta: WizardPlanMeta,
pub steps: Vec<WizardStep>,
}Expand description
Deterministic wizard plan.
Fields§
§meta: WizardPlanMetaPlan metadata and routing identity.
steps: Vec<WizardStep>Ordered steps to execute.
Trait Implementations§
Source§impl Clone for WizardPlan
impl Clone for WizardPlan
Source§fn clone(&self) -> WizardPlan
fn clone(&self) -> WizardPlan
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 WizardPlan
impl Debug for WizardPlan
Source§impl<'de> Deserialize<'de> for WizardPlan
impl<'de> Deserialize<'de> for WizardPlan
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for WizardPlan
impl PartialEq for WizardPlan
Source§impl Serialize for WizardPlan
impl Serialize for WizardPlan
impl StructuralPartialEq for WizardPlan
Auto Trait Implementations§
impl Freeze for WizardPlan
impl RefUnwindSafe for WizardPlan
impl Send for WizardPlan
impl Sync for WizardPlan
impl Unpin for WizardPlan
impl UnsafeUnpin for WizardPlan
impl UnwindSafe for WizardPlan
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