pub struct CreateProjectCommand {
pub name: String,
pub features: Vec<String>,
pub template: Option<String>,
pub initialize_git: bool,
pub include_tests: bool,
pub include_docs: bool,
}
Expand description
Project creation configuration
Fields§
§name: String
§features: Vec<String>
§template: Option<String>
§initialize_git: bool
§include_tests: bool
§include_docs: bool
Auto Trait Implementations§
impl Freeze for CreateProjectCommand
impl RefUnwindSafe for CreateProjectCommand
impl Send for CreateProjectCommand
impl Sync for CreateProjectCommand
impl Unpin for CreateProjectCommand
impl UnwindSafe for CreateProjectCommand
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