pub struct TestListEntry {
pub name: String,
pub labels: Vec<String>,
pub tags: Vec<TestTag>,
pub execution: Option<ExecutionEntry>,
}
Fields§
§name: String
The name of the test.
MUST BE unique within the test list file.
labels: Vec<String>
Arbitrary labels for this test list.
No format requirements are imposed on these labels, but for GN this is typically a build label.
execution: Option<ExecutionEntry>
Trait Implementations§
Source§impl Debug for TestListEntry
impl Debug for TestListEntry
Source§impl<'de> Deserialize<'de> for TestListEntry
impl<'de> Deserialize<'de> for TestListEntry
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
Source§impl PartialEq for TestListEntry
impl PartialEq for TestListEntry
Source§impl Serialize for TestListEntry
impl Serialize for TestListEntry
impl Eq for TestListEntry
impl StructuralPartialEq for TestListEntry
Auto Trait Implementations§
impl Freeze for TestListEntry
impl RefUnwindSafe for TestListEntry
impl Send for TestListEntry
impl Sync for TestListEntry
impl Unpin for TestListEntry
impl UnwindSafe for TestListEntry
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