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
impl RefUnwindSafe for Doctest
impl !Send for Doctest
impl !Sync for Doctest
impl Unpin for Doctest
impl UnwindSafe for Doctest
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more