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 for RunSummary
 
impl PartialEq 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 ==.source§impl Serialize for RunSummary
 
impl Serialize for RunSummary
impl StructuralPartialEq for RunSummary
Auto Trait Implementations§
impl RefUnwindSafe for RunSummary
impl Send for RunSummary
impl Sync for RunSummary
impl Unpin for RunSummary
impl UnwindSafe for RunSummary
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