pub struct ConfigHints {
pub project_description: Option<String>,
pub ci_command: String,
pub build_command: String,
pub test_command: String,
pub lint_command: String,
pub format_command: String,
}Expand description
Configuration hints collected during init wizard.
Fields§
§project_description: Option<String>Project description to replace placeholder.
ci_command: StringCI command (default: make ci).
build_command: StringBuild command (default: make build).
test_command: StringTest command (default: make test).
lint_command: StringLint command (default: make lint).
format_command: StringFormat command (default: make format).
Trait Implementations§
Source§impl Clone for ConfigHints
impl Clone for ConfigHints
Source§fn clone(&self) -> ConfigHints
fn clone(&self) -> ConfigHints
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 ConfigHints
impl Debug for ConfigHints
Auto Trait Implementations§
impl Freeze for ConfigHints
impl RefUnwindSafe for ConfigHints
impl Send for ConfigHints
impl Sync for ConfigHints
impl Unpin for ConfigHints
impl UnsafeUnpin for ConfigHints
impl UnwindSafe for ConfigHints
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