pub struct TrendDelta {
pub verdict_change: Option<VerdictChange>,
pub count_deltas: CountDeltas,
pub new_findings: Vec<TrendFinding>,
pub fixed_findings: Vec<TrendFinding>,
pub sensors_added: Vec<String>,
pub sensors_removed: Vec<String>,
}Expand description
Full trend delta between a baseline and current report.
Fields§
§verdict_change: Option<VerdictChange>§count_deltas: CountDeltas§new_findings: Vec<TrendFinding>§fixed_findings: Vec<TrendFinding>§sensors_added: Vec<String>§sensors_removed: Vec<String>Trait Implementations§
Source§impl Clone for TrendDelta
impl Clone for TrendDelta
Source§fn clone(&self) -> TrendDelta
fn clone(&self) -> TrendDelta
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 TrendDelta
impl Debug for TrendDelta
Source§impl<'de> Deserialize<'de> for TrendDelta
impl<'de> Deserialize<'de> for TrendDelta
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 TrendDelta
impl PartialEq for TrendDelta
Source§impl Serialize for TrendDelta
impl Serialize for TrendDelta
impl Eq for TrendDelta
impl StructuralPartialEq for TrendDelta
Auto Trait Implementations§
impl Freeze for TrendDelta
impl RefUnwindSafe for TrendDelta
impl Send for TrendDelta
impl Sync for TrendDelta
impl Unpin for TrendDelta
impl UnsafeUnpin for TrendDelta
impl UnwindSafe for TrendDelta
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