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§
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