pub struct ScaffoldOutcome {
pub name: String,
pub template: String,
pub template_description: Option<String>,
pub template_tags: Vec<String>,
pub path: PathBuf,
pub created: Vec<String>,
}Fields§
§name: String§template: String§template_description: Option<String>§path: PathBuf§created: Vec<String>Implementations§
Source§impl ScaffoldOutcome
impl ScaffoldOutcome
pub fn human_summary(&self) -> String
Trait Implementations§
Source§impl Clone for ScaffoldOutcome
impl Clone for ScaffoldOutcome
Source§fn clone(&self) -> ScaffoldOutcome
fn clone(&self) -> ScaffoldOutcome
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 moreSource§impl Debug for ScaffoldOutcome
impl Debug for ScaffoldOutcome
Auto Trait Implementations§
impl Freeze for ScaffoldOutcome
impl RefUnwindSafe for ScaffoldOutcome
impl Send for ScaffoldOutcome
impl Sync for ScaffoldOutcome
impl Unpin for ScaffoldOutcome
impl UnwindSafe for ScaffoldOutcome
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