pub struct AggregatedResultsDifference {
pub increase_in_duration: Option<String>,
pub increase_in_failures: Option<i32>,
pub increase_in_non_impacted_tests: Option<i32>,
pub increase_in_other_tests: Option<i32>,
pub increase_in_passed_tests: Option<i32>,
pub increase_in_total_tests: Option<i32>,
}Fields§
§increase_in_duration: Option<String>§increase_in_failures: Option<i32>§increase_in_non_impacted_tests: Option<i32>§increase_in_other_tests: Option<i32>§increase_in_passed_tests: Option<i32>§increase_in_total_tests: Option<i32>Implementations§
Trait Implementations§
Source§impl Clone for AggregatedResultsDifference
impl Clone for AggregatedResultsDifference
Source§fn clone(&self) -> AggregatedResultsDifference
fn clone(&self) -> AggregatedResultsDifference
Returns a duplicate 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 AggregatedResultsDifference
impl Debug for AggregatedResultsDifference
Source§impl Default for AggregatedResultsDifference
impl Default for AggregatedResultsDifference
Source§fn default() -> AggregatedResultsDifference
fn default() -> AggregatedResultsDifference
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AggregatedResultsDifference
impl<'de> Deserialize<'de> for AggregatedResultsDifference
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
impl StructuralPartialEq for AggregatedResultsDifference
Auto Trait Implementations§
impl Freeze for AggregatedResultsDifference
impl RefUnwindSafe for AggregatedResultsDifference
impl Send for AggregatedResultsDifference
impl Sync for AggregatedResultsDifference
impl Unpin for AggregatedResultsDifference
impl UnwindSafe for AggregatedResultsDifference
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