pub struct WizardPlanEnvelope {
pub metadata: PlanMetadata,
pub target_root: String,
pub requested_action: String,
pub normalized_input_summary: BTreeMap<String, Value>,
pub ordered_step_list: Vec<WizardPlanStep>,
pub expected_file_writes: Vec<String>,
pub warnings: Vec<String>,
}Fields§
§metadata: PlanMetadata§target_root: String§requested_action: String§normalized_input_summary: BTreeMap<String, Value>§ordered_step_list: Vec<WizardPlanStep>§expected_file_writes: Vec<String>§warnings: Vec<String>Trait Implementations§
Source§impl Clone for WizardPlanEnvelope
impl Clone for WizardPlanEnvelope
Source§fn clone(&self) -> WizardPlanEnvelope
fn clone(&self) -> WizardPlanEnvelope
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 WizardPlanEnvelope
impl Debug for WizardPlanEnvelope
Source§impl PartialEq for WizardPlanEnvelope
impl PartialEq for WizardPlanEnvelope
Source§impl Serialize for WizardPlanEnvelope
impl Serialize for WizardPlanEnvelope
impl Eq for WizardPlanEnvelope
impl StructuralPartialEq for WizardPlanEnvelope
Auto Trait Implementations§
impl Freeze for WizardPlanEnvelope
impl RefUnwindSafe for WizardPlanEnvelope
impl Send for WizardPlanEnvelope
impl Sync for WizardPlanEnvelope
impl Unpin for WizardPlanEnvelope
impl UnsafeUnpin for WizardPlanEnvelope
impl UnwindSafe for WizardPlanEnvelope
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§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.