pub struct BuildConfig {
pub verbosity: BuildConfigVerbosity,
pub dry_run: bool,
pub parallelism: usize,
pub failures_allowed: usize,
pub max_load_average: f64,
}Expand description
Options (e.g. verbosity, parallelism) passed to a build.
Fields§
§verbosity: BuildConfigVerbosity§dry_run: bool§parallelism: usize§failures_allowed: usize§max_load_average: f64Implementations§
Source§impl BuildConfig
impl BuildConfig
Auto Trait Implementations§
impl Freeze for BuildConfig
impl RefUnwindSafe for BuildConfig
impl Send for BuildConfig
impl Sync for BuildConfig
impl Unpin for BuildConfig
impl UnwindSafe for BuildConfig
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