pub struct Options {
Show 41 fields pub crate_types: Vec<CrateType>, pub optimize: OptLevel, pub debug_assertions: bool, pub debuginfo: DebugInfo, pub debuginfo_compression: DebugInfoCompression, pub lint_opts: Vec<(String, Level)>, pub lint_cap: Option<Level>, pub describe_lints: bool, pub output_types: OutputTypes, pub search_paths: Vec<SearchPath>, pub libs: Vec<NativeLib>, pub maybe_sysroot: Option<PathBuf>, pub target_triple: TargetTriple, pub logical_env: FxIndexMap<String, String>, pub test: bool, pub error_format: ErrorOutputType, pub diagnostic_width: Option<usize>, pub incremental: Option<PathBuf>, pub assert_incr_state: Option<IncrementalStateAssertion>, pub untracked_state_hash: Hash64, pub unstable_opts: UnstableOptions, pub prints: Vec<PrintRequest>, pub cg: CodegenOptions, pub externs: Externs, pub crate_name: Option<String>, pub unstable_features: UnstableFeatures, pub actually_rustdoc: bool, pub resolve_doc_links: ResolveDocLinks, pub trimmed_def_paths: bool, pub cli_forced_codegen_units: Option<usize>, pub cli_forced_local_thinlto_off: bool, pub remap_path_prefix: Vec<(PathBuf, PathBuf)>, pub real_rust_source_base_dir: Option<PathBuf>, pub edition: Edition, pub json_artifact_notifications: bool, pub json_unused_externs: JsonUnusedExterns, pub json_future_incompat: bool, pub pretty: Option<PpMode>, pub working_dir: RealFileName, pub color: ColorConfig, pub verbose: bool,
}
Expand description

The top-level command-line options struct.

For each option, one has to specify how it behaves with regard to the dependency tracking system of incremental compilation. This is done via the square-bracketed directive after the field type. The options are:

  • [TRACKED] A change in the given field will cause the compiler to completely clear the incremental compilation cache before proceeding.

  • [TRACKED_NO_CRATE_HASH] Same as [TRACKED], but will not affect the crate hash. This is useful for options that only affect the incremental cache.

  • [UNTRACKED] Incremental compilation is not influenced by this option.

  • [SUBSTRUCT] Second-level sub-structs containing more options.

If you add a new option to this struct or one of the sub-structs like CodegenOptions, think about how it influences incremental compilation. If in doubt, specify [TRACKED], which is always “correct” but might lead to unnecessary re-compilation.

Fields§

§crate_types: Vec<CrateType>

The crate config requested for the session, which may be combined with additional crate configurations during the compile process.

§optimize: OptLevel§debug_assertions: bool

Include the debug_assertions flag in dependency tracking, since it can influence whether overflow checks are done or not.

§debuginfo: DebugInfo§debuginfo_compression: DebugInfoCompression§lint_opts: Vec<(String, Level)>§lint_cap: Option<Level>§describe_lints: bool§output_types: OutputTypes§search_paths: Vec<SearchPath>§libs: Vec<NativeLib>§maybe_sysroot: Option<PathBuf>§target_triple: TargetTriple§logical_env: FxIndexMap<String, String>

Effective logical environment used by env!/option_env! macros

§test: bool§error_format: ErrorOutputType§diagnostic_width: Option<usize>§incremental: Option<PathBuf>

If Some, enable incremental compilation, using the given directory to store intermediate results.

§assert_incr_state: Option<IncrementalStateAssertion>§untracked_state_hash: Hash64

Set by the Config::hash_untracked_state callback for custom drivers to invalidate the incremental cache

§unstable_opts: UnstableOptions§prints: Vec<PrintRequest>§cg: CodegenOptions§externs: Externs§crate_name: Option<String>§unstable_features: UnstableFeatures

Indicates how the compiler should treat unstable features.

§actually_rustdoc: bool

Indicates whether this run of the compiler is actually rustdoc. This is currently just a hack and will be removed eventually, so please try to not rely on this too much.

§resolve_doc_links: ResolveDocLinks

Whether name resolver should resolve documentation links.

§trimmed_def_paths: bool

Control path trimming.

§cli_forced_codegen_units: Option<usize>

Specifications of codegen units / ThinLTO which are forced as a result of parsing command line options. These are not necessarily what rustc was invoked with, but massaged a bit to agree with commands like --emit llvm-ir which they’re often incompatible with if we otherwise use the defaults of rustc.

§cli_forced_local_thinlto_off: bool§remap_path_prefix: Vec<(PathBuf, PathBuf)>

Remap source path prefixes in all output (messages, object files, debug, etc.).

§real_rust_source_base_dir: Option<PathBuf>

Base directory containing the src/ for the Rust standard library, and potentially rustc as well, if we can find it. Right now it’s always $sysroot/lib/rustlib/src/rust (i.e. the rustup rust-src component).

This directory is what the virtual /rustc/$hash is translated back to, if Rust was built with path remapping to /rustc/$hash enabled (the rust.remap-debuginfo option in config.toml).

§edition: Edition§json_artifact_notifications: bool

true if we’re emitting JSON blobs about each artifact produced by the compiler.

§json_unused_externs: JsonUnusedExterns

true if we’re emitting a JSON blob containing the unused externs

§json_future_incompat: bool

true if we’re emitting a JSON job containing a future-incompat report for lints

§pretty: Option<PpMode>§working_dir: RealFileName

The (potentially remapped) working directory

§color: ColorConfig§verbose: bool

Implementations§

source§

impl Options

source

pub fn build_dep_graph(&self) -> bool

Returns true if there is a reason to build the dep graph.

source

pub fn file_path_mapping(&self) -> FilePathMapping

source

pub fn will_create_output_file(&self) -> bool

Returns true if there will be an output file generated.

source

pub fn share_generics(&self) -> bool

source

pub fn get_symbol_mangling_version(&self) -> SymbolManglingVersion

source§

impl Options

source

pub fn dep_tracking_hash(&self, for_crate_hash: bool) -> u64

Trait Implementations§

source§

impl Clone for Options

source§

fn clone(&self) -> Options

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Default for Options

source§

fn default() -> Options

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Aligned for T

source§

const ALIGN: Alignment = _

Alignment of Self.
source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T, R> CollectAndApply<T, R> for T

source§

fn collect_and_apply<I, F>(iter: I, f: F) -> R
where I: Iterator<Item = T>, F: FnOnce(&[T]) -> R,

Equivalent to f(&iter.collect::<Vec<_>>()).

§

type Output = R

§

impl<T> Filterable for T

§

fn filterable( self, filter_name: &'static str ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>

Creates a filterable data provider with the given name for debugging. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<'a, T> Captures<'a> for T
where T: ?Sized,

§

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> MaybeSendSync for T

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: 2144 bytes