Struct azure_devops_rust_api::test::models::RunSummary
source · pub struct RunSummary {
pub duration: Option<String>,
pub no_config_runs_count: Option<i32>,
pub run_summary_by_outcome: Option<Value>,
pub run_summary_by_state: Option<Value>,
pub total_runs_count: Option<i32>,
}Expand description
Summary of runs for a pipeline instance.
Fields§
§duration: Option<String>Total time taken by runs with state completed and NeedInvestigation.
no_config_runs_count: Option<i32>NoConfig runs count.
run_summary_by_outcome: Option<Value>Runs count by outcome for runs with state completed and NeedInvestigation runs.
run_summary_by_state: Option<Value>Runs count by state.
total_runs_count: Option<i32>Total runs count.
Implementations§
source§impl RunSummary
impl RunSummary
Trait Implementations§
source§impl Clone for RunSummary
impl Clone for RunSummary
source§fn clone(&self) -> RunSummary
fn clone(&self) -> RunSummary
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 RunSummary
impl Debug for RunSummary
source§impl Default for RunSummary
impl Default for RunSummary
source§fn default() -> RunSummary
fn default() -> RunSummary
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for RunSummary
impl<'de> Deserialize<'de> for RunSummary
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<RunSummary> for RunSummary
impl PartialEq<RunSummary> for RunSummary
source§fn eq(&self, other: &RunSummary) -> bool
fn eq(&self, other: &RunSummary) -> bool
This method tests for
self and other values to be equal, and is used
by ==.