pub struct AggregatedResultsByOutcome {
pub count: Option<i32>,
pub duration: Option<String>,
pub group_by_field: Option<String>,
pub group_by_value: Option<Value>,
pub outcome: Option<Outcome>,
pub rerun_result_count: Option<i32>,
}
Expand description
Fields§
§count: Option<i32>
§duration: Option<String>
§group_by_field: Option<String>
§group_by_value: Option<Value>
§outcome: Option<Outcome>
§rerun_result_count: Option<i32>
Implementations§
Trait Implementations§
source§impl Clone for AggregatedResultsByOutcome
impl Clone for AggregatedResultsByOutcome
source§fn clone(&self) -> AggregatedResultsByOutcome
fn clone(&self) -> AggregatedResultsByOutcome
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 AggregatedResultsByOutcome
impl Debug for AggregatedResultsByOutcome
source§impl Default for AggregatedResultsByOutcome
impl Default for AggregatedResultsByOutcome
source§fn default() -> AggregatedResultsByOutcome
fn default() -> AggregatedResultsByOutcome
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for AggregatedResultsByOutcome
impl<'de> Deserialize<'de> for AggregatedResultsByOutcome
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 AggregatedResultsByOutcome
impl PartialEq for AggregatedResultsByOutcome
source§fn eq(&self, other: &AggregatedResultsByOutcome) -> bool
fn eq(&self, other: &AggregatedResultsByOutcome) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AggregatedResultsByOutcome
Auto Trait Implementations§
impl RefUnwindSafe for AggregatedResultsByOutcome
impl Send for AggregatedResultsByOutcome
impl Sync for AggregatedResultsByOutcome
impl Unpin for AggregatedResultsByOutcome
impl UnwindSafe for AggregatedResultsByOutcome
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