pub struct ScaffoldRequest {
pub name: String,
pub path: PathBuf,
pub template_id: String,
pub org: String,
pub version: String,
pub license: String,
pub wit_world: String,
pub non_interactive: bool,
pub year_override: Option<i32>,
pub dependency_mode: DependencyMode,
}Fields§
§name: String§path: PathBuf§template_id: String§org: String§version: String§license: String§wit_world: String§non_interactive: bool§year_override: Option<i32>§dependency_mode: DependencyModeTrait Implementations§
Source§impl Clone for ScaffoldRequest
impl Clone for ScaffoldRequest
Source§fn clone(&self) -> ScaffoldRequest
fn clone(&self) -> ScaffoldRequest
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 moreAuto Trait Implementations§
impl Freeze for ScaffoldRequest
impl RefUnwindSafe for ScaffoldRequest
impl Send for ScaffoldRequest
impl Sync for ScaffoldRequest
impl Unpin for ScaffoldRequest
impl UnwindSafe for ScaffoldRequest
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