Struct omicron_zone_package::package::BuildConfig
source · pub struct BuildConfig<'a> {
pub target: &'a Target,
pub progress: &'a dyn Progress,
pub cache_disabled: bool,
}Expand description
Configuration that can modify how a package is built.
Fields§
§target: &'a TargetDescribes the Target to build the package for.
progress: &'a dyn ProgressDescribes how progress will be communicated back to the caller.
cache_disabled: boolIf “true”, disables all caching.
Trait Implementations§
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for BuildConfig<'a>
impl<'a> !Send for BuildConfig<'a>
impl<'a> !Sync for BuildConfig<'a>
impl<'a> Unpin for BuildConfig<'a>
impl<'a> !UnwindSafe for BuildConfig<'a>
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