Struct azure_devops_rust_api::test_results::models::RunStatistic
source · pub struct RunStatistic {
pub count: Option<i32>,
pub outcome: Option<String>,
pub resolution_state: Option<TestResolutionState>,
pub result_metadata: Option<ResultMetadata>,
pub state: Option<String>,
}Expand description
Test run statistics per outcome.
Fields§
§count: Option<i32>Test result count fo the given outcome.
outcome: Option<String>Test result outcome
resolution_state: Option<TestResolutionState>Test Resolution State Details.
result_metadata: Option<ResultMetadata>ResultMetadata for the given outcome/count.
state: Option<String>State of the test run
Implementations§
source§impl RunStatistic
impl RunStatistic
Trait Implementations§
source§impl Clone for RunStatistic
impl Clone for RunStatistic
source§fn clone(&self) -> RunStatistic
fn clone(&self) -> RunStatistic
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 RunStatistic
impl Debug for RunStatistic
source§impl Default for RunStatistic
impl Default for RunStatistic
source§fn default() -> RunStatistic
fn default() -> RunStatistic
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for RunStatistic
impl<'de> Deserialize<'de> for RunStatistic
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<RunStatistic> for RunStatistic
impl PartialEq<RunStatistic> for RunStatistic
source§fn eq(&self, other: &RunStatistic) -> bool
fn eq(&self, other: &RunStatistic) -> bool
This method tests for
self and other values to be equal, and is used
by ==.