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: UnitWhat’s being doctested
args: Vec<OsString>Arguments needed to pass to rustdoc to run this test.
unstable_opts: boolWhether 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
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 · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more