pub struct BuildConfig {
pub parallel_jobs: usize,
pub cache_dir: PathBuf,
pub use_remote_cache: bool,
pub fail_fast: bool,
pub verbose: bool,
}Expand description
Build engine configuration
Fields§
§parallel_jobs: usizeMaximum parallel jobs
cache_dir: PathBufCache directory
use_remote_cache: boolWhether to use remote cache
fail_fast: boolWhether to fail fast on first error
verbose: boolVerbosity level
Trait Implementations§
Source§impl Clone for BuildConfig
impl Clone for BuildConfig
Source§fn clone(&self) -> BuildConfig
fn clone(&self) -> BuildConfig
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 BuildConfig
impl Debug for 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