Struct cargo::core::compiler::build_config::BuildConfig
source · pub struct BuildConfig {Show 14 fields
pub requested_kinds: Vec<CompileKind>,
pub jobs: u32,
pub keep_going: bool,
pub requested_profile: InternedString,
pub mode: CompileMode,
pub message_format: MessageFormat,
pub force_rebuild: bool,
pub build_plan: bool,
pub unit_graph: bool,
pub primary_unit_rustc: Option<ProcessBuilder>,
pub rustfix_diagnostic_server: Rc<RefCell<Option<RustfixDiagnosticServer>>>,
pub export_dir: Option<PathBuf>,
pub future_incompat_report: bool,
pub timing_outputs: Vec<TimingOutput>,
}Expand description
Configuration information for a rustc build.
Fields§
§requested_kinds: Vec<CompileKind>The requested kind of compilation for this session
jobs: u32Number of rustc jobs to run in parallel.
keep_going: boolDo not abort the build as soon as there is an error.
requested_profile: InternedStringBuild profile
mode: CompileModeThe mode we are compiling in.
message_format: MessageFormattrue to print stdout in JSON format (for machine reading).
force_rebuild: boolForce Cargo to do a full rebuild and treat each target as changed.
build_plan: boolOutput a build plan to stdout instead of actually compiling.
unit_graph: boolOutput the unit graph to stdout instead of actually compiling.
primary_unit_rustc: Option<ProcessBuilder>An optional override of the rustc process for primary units
rustfix_diagnostic_server: Rc<RefCell<Option<RustfixDiagnosticServer>>>A thread used by cargo fix to receive messages on a socket regarding
the success/failure of applying fixes.
export_dir: Option<PathBuf>The directory to copy final artifacts to. Note that even if out_dir is
set, a copy of artifacts still could be found a target/(debug\release)
as usual.
future_incompat_report: booltrue to output a future incompatibility report at the end of the build
timing_outputs: Vec<TimingOutput>Which kinds of build timings to output (empty if none).
Implementations§
source§impl BuildConfig
impl BuildConfig
sourcepub fn new(
config: &Config,
jobs: Option<JobsConfig>,
keep_going: bool,
requested_targets: &[String],
mode: CompileMode
) -> CargoResult<BuildConfig>
pub fn new( config: &Config, jobs: Option<JobsConfig>, keep_going: bool, requested_targets: &[String], mode: CompileMode ) -> CargoResult<BuildConfig>
Parses all config files to learn about build configuration. Currently configured options are:
build.jobsbuild.targettarget.$target.artarget.$target.linkertarget.$target.libfoo.metadata
sourcepub fn emit_json(&self) -> bool
pub fn emit_json(&self) -> bool
Whether or not the user wants JSON output. Whether or not rustc
actually uses JSON is decided in add_error_format.
pub fn test(&self) -> bool
pub fn single_requested_kind(&self) -> CargoResult<CompileKind>
Trait Implementations§
source§impl Clone for BuildConfig
impl Clone for BuildConfig
source§fn clone(&self) -> BuildConfig
fn clone(&self) -> BuildConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreAuto Trait Implementations§
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,
source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 272 bytes