pub struct TestStep {
pub name: String,
pub status: Status,
pub status_details: Option<StatusDetails>,
pub stage: String,
pub start: i64,
pub stop: i64,
pub steps: Vec<TestStep>,
pub attachments: Vec<Attachment>,
pub parameters: Vec<Parameter>,
}Fields§
§name: String§status: Status§status_details: Option<StatusDetails>§stage: String§start: i64§stop: i64§steps: Vec<TestStep>§attachments: Vec<Attachment>§parameters: Vec<Parameter>Trait Implementations§
Source§impl Serialize for TestStep
impl Serialize for TestStep
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 TestStep
impl RefUnwindSafe for TestStep
impl Send for TestStep
impl Sync for TestStep
impl Unpin for TestStep
impl UnsafeUnpin for TestStep
impl UnwindSafe for TestStep
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