pub struct ArtifactListOutput {
pub required: Vec<String>,
pub optional: Vec<String>,
}Expand description
JSON output format for --list-required-artifacts.
Fields§
§required: Vec<String>List of unique required artifact IDs across all matching tests.
optional: Vec<String>List of unique optional artifact IDs across all matching tests.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ArtifactListOutput
impl<'de> Deserialize<'de> for ArtifactListOutput
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 ArtifactListOutput
impl RefUnwindSafe for ArtifactListOutput
impl Send for ArtifactListOutput
impl Sync for ArtifactListOutput
impl Unpin for ArtifactListOutput
impl UnsafeUnpin for ArtifactListOutput
impl UnwindSafe for ArtifactListOutput
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