pub struct Manifest {
pub test_binaries: Vec<TestBinary>,
pub standalone_binary_envs: Vec<(String, Utf8PathBuf)>,
}
Expand description
A manifest created by the rust_doctest_builder, used by the rust_doctest_runner.
Fields§
§test_binaries: Vec<TestBinary>
A list of binaries created.
standalone_binary_envs: Vec<(String, Utf8PathBuf)>
Some tests are standalone binaries these are found via ENV vars. These paths are all relative to the rust_doctest_builder output directory.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Manifest
impl<'de> Deserialize<'de> for Manifest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Manifest
impl RefUnwindSafe for Manifest
impl Send for Manifest
impl Sync for Manifest
impl Unpin for Manifest
impl UnwindSafe for Manifest
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
Mutably borrows from an owned value. Read more