pub struct Doctest {
    pub unit: Unit,
    pub args: Vec<OsString>,
    pub unstable_opts: bool,
    pub linker: Option<PathBuf>,
    pub script_meta: Option<Metadata>,
    pub env: HashMap<String, OsString>,
}
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.

env: HashMap<String, OsString>

Environment variables to set in the rustdoc process.

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

Returns the argument unchanged.

Calls U::from(self).

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

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.