pub(crate) struct Options {Show 41 fields
pub(crate) crate_name: Option<String>,
pub(crate) bin_crate: bool,
pub(crate) proc_macro_crate: bool,
pub(crate) error_format: ErrorOutputType,
pub(crate) diagnostic_width: Option<usize>,
pub(crate) libs: Vec<SearchPath>,
pub(crate) lib_strs: Vec<String>,
pub(crate) externs: Externs,
pub(crate) extern_strs: Vec<String>,
pub(crate) cfgs: Vec<String>,
pub(crate) check_cfgs: Vec<String>,
pub(crate) codegen_options: CodegenOptions,
pub(crate) codegen_options_strs: Vec<String>,
pub(crate) unstable_opts: UnstableOptions,
pub(crate) unstable_opts_strs: Vec<String>,
pub(crate) target: TargetTuple,
pub(crate) edition: Edition,
pub(crate) sysroot: Sysroot,
pub(crate) lint_opts: Vec<(String, Level)>,
pub(crate) describe_lints: bool,
pub(crate) lint_cap: Option<Level>,
pub(crate) should_test: bool,
pub(crate) test_args: Vec<String>,
pub(crate) test_run_directory: Option<PathBuf>,
pub(crate) persist_doctests: Option<PathBuf>,
pub(crate) test_runtool: Option<String>,
pub(crate) test_runtool_args: Vec<String>,
pub(crate) no_run: bool,
pub(crate) remap_path_prefix: Vec<(PathBuf, PathBuf)>,
pub(crate) test_builder: Option<PathBuf>,
pub(crate) test_builder_wrappers: Vec<PathBuf>,
pub(crate) show_coverage: bool,
pub(crate) crate_version: Option<String>,
pub(crate) output_format: OutputFormat,
pub(crate) run_check: bool,
pub(crate) json_unused_externs: JsonUnusedExterns,
pub(crate) nocapture: bool,
pub(crate) scrape_examples_options: Option<ScrapeExamplesOptions>,
pub(crate) unstable_features: UnstableFeatures,
pub(crate) expanded_args: Vec<String>,
pub(crate) doctest_build_args: Vec<String>,
}Expand description
Configuration options for rustdoc.
Fields§
§crate_name: Option<String>The name of the crate being documented.
bin_crate: boolWhether or not this is a bin crate
proc_macro_crate: boolWhether or not this is a proc-macro crate
error_format: ErrorOutputTypeHow to format errors and warnings.
diagnostic_width: Option<usize>Width of output buffer to truncate errors appropriately.
libs: Vec<SearchPath>Library search paths to hand to the compiler.
lib_strs: Vec<String>Library search paths strings to hand to the compiler.
externs: ExternsThe list of external crates to link against.
extern_strs: Vec<String>The list of external crates strings to link against.
cfgs: Vec<String>List of cfg flags to hand to the compiler. Always includes rustdoc.
check_cfgs: Vec<String>List of check cfg flags to hand to the compiler.
codegen_options: CodegenOptionsCodegen options to hand to the compiler.
codegen_options_strs: Vec<String>Codegen options strings to hand to the compiler.
unstable_opts: UnstableOptionsUnstable (-Z) options to pass to the compiler.
unstable_opts_strs: Vec<String>Unstable (-Z) options strings to pass to the compiler.
target: TargetTupleThe target used to compile the crate against.
edition: EditionEdition used when reading the crate. Defaults to “2015”. Also used by default when compiling doctests from the crate.
sysroot: SysrootThe path to the sysroot. Used during the compilation process.
lint_opts: Vec<(String, Level)>Lint information passed over the command-line.
describe_lints: boolWhether to ask rustc to describe the lints it knows.
lint_cap: Option<Level>What level to cap lints at.
should_test: boolWhether we should run doctests instead of generating docs.
test_args: Vec<String>List of arguments to pass to the test harness, if running tests.
test_run_directory: Option<PathBuf>The working directory in which to run tests.
persist_doctests: Option<PathBuf>Optional path to persist the doctest executables to, defaults to a temporary directory if not set.
test_runtool: Option<String>Runtool to run doctests with
test_runtool_args: Vec<String>Arguments to pass to the runtool
no_run: boolDo not run doctests, compile them if should_test is active.
remap_path_prefix: Vec<(PathBuf, PathBuf)>What sources are being mapped.
test_builder: Option<PathBuf>The path to a rustc-like binary to build tests with. If not set, we
default to loading from $sysroot/bin/rustc.
test_builder_wrappers: Vec<PathBuf>Run these wrapper instead of rustc directly
show_coverage: boolWhether to run the calculate-doc-coverage pass, which counts the number of public items
with and without documentation.
crate_version: Option<String>Crate version to note on the sidebar of generated docs.
output_format: OutputFormatThe format that we output when rendering.
Currently used only for the --show-coverage option.
run_check: boolIf this option is set to true, rustdoc will only run checks and not generate
documentation.
json_unused_externs: JsonUnusedExternsWhether doctests should emit unused externs
nocapture: boolWhether to skip capturing stdout and stderr of tests.
scrape_examples_options: Option<ScrapeExamplesOptions>Configuration for scraping examples from the current crate. If this option is Some(..) then the compiler will scrape examples and not generate documentation.
unstable_features: UnstableFeaturesNote: this field is duplicated in RenderOptions because it’s useful
to have it in both places.
expanded_args: Vec<String>All commandline args used to invoke the compiler, with @file args fully expanded. This will only be used within debug info, e.g. in the pdb file on windows This is mainly useful for other tools that reads that debuginfo to figure out how to call the compiler with the same arguments.
doctest_build_args: Vec<String>Arguments to be used when compiling doctests.
Implementations§
Source§impl Options
impl Options
Sourcepub(crate) fn from_matches(
early_dcx: &mut EarlyDiagCtxt,
matches: &Matches,
args: Vec<String>,
) -> Option<(InputMode, Options, RenderOptions)>
pub(crate) fn from_matches( early_dcx: &mut EarlyDiagCtxt, matches: &Matches, args: Vec<String>, ) -> Option<(InputMode, Options, RenderOptions)>
Parses the given command-line for options. If an error message or other early-return has
been printed, returns Err with the exit code.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Options
impl RefUnwindSafe for Options
impl Send for Options
impl Sync for Options
impl Unpin for Options
impl UnwindSafe for Options
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
Source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
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: 2328 bytes