pub struct StartTestCaseParams {Show 18 fields
pub uuid: Option<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: Option<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>Implementations§
Trait Implementations§
Source§impl Clone for StartTestCaseParams
impl Clone for StartTestCaseParams
Source§fn clone(&self) -> StartTestCaseParams
fn clone(&self) -> StartTestCaseParams
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 StartTestCaseParams
impl Debug for StartTestCaseParams
Source§impl Default for StartTestCaseParams
impl Default for StartTestCaseParams
Source§fn default() -> StartTestCaseParams
fn default() -> StartTestCaseParams
Returns the “default value” for a type. Read more
Source§impl From<&str> for StartTestCaseParams
impl From<&str> for StartTestCaseParams
Auto Trait Implementations§
impl Freeze for StartTestCaseParams
impl RefUnwindSafe for StartTestCaseParams
impl Send for StartTestCaseParams
impl Sync for StartTestCaseParams
impl Unpin for StartTestCaseParams
impl UnsafeUnpin for StartTestCaseParams
impl UnwindSafe for StartTestCaseParams
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