pub struct Opts {
pub always_make: bool,
pub ignore_errors: bool,
pub just_print: bool,
pub old_file: Vec<String>,
pub new_file: Vec<String>,
}Expand description
Represents options available for a makefile.
Fields§
§always_make: boolUnconditionally make all targets.
ignore_errors: boolIgnore errors from recipes.
just_print: boolDon’t execute recipes; just print them.
old_file: Vec<String>Consider FILE to be very old and do not remake it.
new_file: Vec<String>Consider FILE to be very new to simulate “what if” it changed.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Opts
impl RefUnwindSafe for Opts
impl Send for Opts
impl Sync for Opts
impl Unpin for Opts
impl UnwindSafe for Opts
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