pub struct TestResult {Show 18 fields
pub uuid: String,
pub name: String,
pub full_name: Option<String>,
pub history_id: Option<String>,
pub test_case_id: Option<String>,
pub description: Option<String>,
pub description_html: Option<String>,
pub status: Option<Status>,
pub status_details: Option<StatusDetails>,
pub stage: Option<Stage>,
pub labels: Vec<Label>,
pub links: Vec<Link>,
pub parameters: Vec<Parameter>,
pub steps: Vec<StepResult>,
pub attachments: Vec<Attachment>,
pub title_path: Option<Vec<String>>,
pub start: Option<i64>,
pub stop: Option<i64>,
}Fields§
§uuid: String§name: String§full_name: Option<String>§history_id: Option<String>§test_case_id: Option<String>§description: Option<String>§description_html: Option<String>§status: Option<Status>§status_details: Option<StatusDetails>§stage: Option<Stage>§labels: Vec<Label>§links: Vec<Link>§parameters: Vec<Parameter>§steps: Vec<StepResult>§attachments: Vec<Attachment>§title_path: Option<Vec<String>>§start: Option<i64>§stop: Option<i64>Trait Implementations§
Source§impl Clone for TestResult
impl Clone for TestResult
Source§fn clone(&self) -> TestResult
fn clone(&self) -> TestResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TestResult
impl Debug for TestResult
Source§impl Default for TestResult
impl Default for TestResult
Source§fn default() -> TestResult
fn default() -> TestResult
Returns the “default value” for a type. 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