pub struct ModuleScaffoldInput {
pub template_id: ModuleTemplateId,
pub module_name: String,
pub destination: String,
}Expand description
Inputs needed to plan a module scaffold from a module template.
Fields§
§template_id: ModuleTemplateIdModule template to scaffold from.
module_name: StringRaw module name as provided by the caller (normalized during planning).
destination: StringTarget directory the plan is rooted at.
Auto Trait Implementations§
impl Freeze for ModuleScaffoldInput
impl RefUnwindSafe for ModuleScaffoldInput
impl Send for ModuleScaffoldInput
impl Sync for ModuleScaffoldInput
impl Unpin for ModuleScaffoldInput
impl UnsafeUnpin for ModuleScaffoldInput
impl UnwindSafe for ModuleScaffoldInput
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