Struct cargo::core::compiler::Doctest[][src]

pub struct Doctest {
    pub unit: Unit,
    pub args: Vec<OsString>,
    pub unstable_opts: bool,
    pub linker: Option<PathBuf>,
    pub script_meta: Option<Metadata>,
}
Expand description

Structure with enough information to run rustdoc --test.

Fields

unit: Unit

What’s being doctested

args: Vec<OsString>

Arguments needed to pass to rustdoc to run this test.

unstable_opts: bool

Whether or not -Zunstable-options is needed.

linker: Option<PathBuf>

The -Clinker value to use.

script_meta: Option<Metadata>

The script metadata, if this unit’s package has a build script.

This is used for indexing Compilation::extra_env.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.