pub struct WizardPlannedFile {
pub relative_path: String,
pub content: String,
}Expand description
A single file a plan will emit: its path relative to the destination and its full content.
Fields§
§relative_path: StringPath relative to the plan destination root.
content: StringFull file content to write.
Auto Trait Implementations§
impl Freeze for WizardPlannedFile
impl RefUnwindSafe for WizardPlannedFile
impl Send for WizardPlannedFile
impl Sync for WizardPlannedFile
impl Unpin for WizardPlannedFile
impl UnsafeUnpin for WizardPlannedFile
impl UnwindSafe for WizardPlannedFile
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