Struct azure_devops_rust_api::test::models::ShallowTestCaseResult
source · pub struct ShallowTestCaseResult {
pub automated_test_name: Option<String>,
pub automated_test_storage: Option<String>,
pub duration_in_ms: Option<f64>,
pub id: Option<i32>,
pub is_re_run: Option<bool>,
pub outcome: Option<String>,
pub owner: Option<String>,
pub priority: Option<i32>,
pub ref_id: Option<i32>,
pub run_id: Option<i32>,
pub tags: Vec<String>,
pub test_case_title: Option<String>,
}
Expand description
Fields§
§automated_test_name: Option<String>
§automated_test_storage: Option<String>
§duration_in_ms: Option<f64>
§id: Option<i32>
§is_re_run: Option<bool>
§outcome: Option<String>
§owner: Option<String>
§priority: Option<i32>
§ref_id: Option<i32>
§run_id: Option<i32>
§test_case_title: Option<String>
Implementations§
Trait Implementations§
source§impl Clone for ShallowTestCaseResult
impl Clone for ShallowTestCaseResult
source§fn clone(&self) -> ShallowTestCaseResult
fn clone(&self) -> ShallowTestCaseResult
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 ShallowTestCaseResult
impl Debug for ShallowTestCaseResult
source§impl Default for ShallowTestCaseResult
impl Default for ShallowTestCaseResult
source§fn default() -> ShallowTestCaseResult
fn default() -> ShallowTestCaseResult
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ShallowTestCaseResult
impl<'de> Deserialize<'de> for ShallowTestCaseResult
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 ShallowTestCaseResult
impl PartialEq for ShallowTestCaseResult
source§fn eq(&self, other: &ShallowTestCaseResult) -> bool
fn eq(&self, other: &ShallowTestCaseResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ShallowTestCaseResult
impl Serialize for ShallowTestCaseResult
impl StructuralPartialEq for ShallowTestCaseResult
Auto Trait Implementations§
impl Freeze for ShallowTestCaseResult
impl RefUnwindSafe for ShallowTestCaseResult
impl Send for ShallowTestCaseResult
impl Sync for ShallowTestCaseResult
impl Unpin for ShallowTestCaseResult
impl UnwindSafe for ShallowTestCaseResult
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