pub struct TestCaseResultUpdateModel {Show 18 fields
pub associated_work_items: Vec<i32>,
pub automated_test_type_id: Option<String>,
pub comment: Option<String>,
pub completed_date: Option<String>,
pub computer_name: Option<String>,
pub custom_fields: Vec<CustomTestField>,
pub duration_in_ms: Option<String>,
pub error_message: Option<String>,
pub failure_type: Option<String>,
pub outcome: Option<String>,
pub owner: Option<IdentityRef>,
pub resolution_state: Option<String>,
pub run_by: Option<IdentityRef>,
pub stack_trace: Option<String>,
pub started_date: Option<String>,
pub state: Option<String>,
pub test_case_priority: Option<String>,
pub test_result: Option<ShallowReference>,
}
Expand description
Fields§
§associated_work_items: Vec<i32>
§automated_test_type_id: Option<String>
§comment: Option<String>
§completed_date: Option<String>
§computer_name: Option<String>
§custom_fields: Vec<CustomTestField>
§duration_in_ms: Option<String>
§error_message: Option<String>
§failure_type: Option<String>
§outcome: Option<String>
§owner: Option<IdentityRef>
§resolution_state: Option<String>
§run_by: Option<IdentityRef>
§stack_trace: Option<String>
§started_date: Option<String>
§state: Option<String>
§test_case_priority: Option<String>
§test_result: Option<ShallowReference>
An abstracted reference to some other resource. This class is used to provide the build data contracts with a uniform way to reference other resources in a way that provides easy traversal through links.
Implementations§
Trait Implementations§
source§impl Clone for TestCaseResultUpdateModel
impl Clone for TestCaseResultUpdateModel
source§fn clone(&self) -> TestCaseResultUpdateModel
fn clone(&self) -> TestCaseResultUpdateModel
Returns a copy 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 TestCaseResultUpdateModel
impl Debug for TestCaseResultUpdateModel
source§impl Default for TestCaseResultUpdateModel
impl Default for TestCaseResultUpdateModel
source§fn default() -> TestCaseResultUpdateModel
fn default() -> TestCaseResultUpdateModel
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TestCaseResultUpdateModel
impl<'de> Deserialize<'de> for TestCaseResultUpdateModel
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for TestCaseResultUpdateModel
impl PartialEq for TestCaseResultUpdateModel
source§fn eq(&self, other: &TestCaseResultUpdateModel) -> bool
fn eq(&self, other: &TestCaseResultUpdateModel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TestCaseResultUpdateModel
Auto Trait Implementations§
impl RefUnwindSafe for TestCaseResultUpdateModel
impl Send for TestCaseResultUpdateModel
impl Sync for TestCaseResultUpdateModel
impl Unpin for TestCaseResultUpdateModel
impl UnwindSafe for TestCaseResultUpdateModel
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