pub struct WizardPlan {
pub template_id: WizardTemplateId,
pub files: Vec<WizardPlannedFile>,
}Expand description
The full set of files a wizard template expands into, before any disk I/O.
Fields§
§template_id: WizardTemplateIdTemplate the plan was produced from.
files: Vec<WizardPlannedFile>Files to write, in emit order.
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