pub struct TestResult {Show 14 fields
pub uuid: Uuid,
pub history_id: Uuid,
pub name: String,
pub description: Option<String>,
pub status: Status,
pub status_details: Option<StatusDetails>,
pub stage: String,
pub start: i64,
pub stop: i64,
pub labels: Vec<Label>,
pub parameters: Vec<Parameter>,
pub links: Vec<Link>,
pub steps: Vec<TestStep>,
pub attachments: Vec<Attachment>,
}Fields§
§uuid: Uuid§history_id: Uuid§name: String§description: Option<String>§status: Status§status_details: Option<StatusDetails>§stage: String§start: i64§stop: i64§labels: Vec<Label>§parameters: Vec<Parameter>§links: Vec<Link>§steps: Vec<TestStep>§attachments: Vec<Attachment>Trait Implementations§
Source§impl Debug for TestResult
impl Debug for TestResult
Source§impl Serialize for TestResult
impl Serialize for TestResult
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for TestResult
impl RefUnwindSafe for TestResult
impl Send for TestResult
impl Sync for TestResult
impl Unpin for TestResult
impl UnsafeUnpin for TestResult
impl UnwindSafe for TestResult
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