pub struct TrendDeltas {
pub improved: Vec<TrendDelta>,
pub regressed: Vec<TrendDelta>,
}Available on crate feature
vcs-git only.Expand description
The improving / regressing split returned by Trend::deltas.
Fields§
§improved: Vec<TrendDelta>Files whose risk fell, most-improved first.
regressed: Vec<TrendDelta>Files whose risk rose, most-regressed first.
Trait Implementations§
Source§impl Clone for TrendDeltas
impl Clone for TrendDeltas
Source§fn clone(&self) -> TrendDeltas
fn clone(&self) -> TrendDeltas
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TrendDeltas
impl Debug for TrendDeltas
Source§impl Default for TrendDeltas
impl Default for TrendDeltas
Source§fn default() -> TrendDeltas
fn default() -> TrendDeltas
Returns the “default value” for a type. Read more
Source§impl PartialEq for TrendDeltas
impl PartialEq for TrendDeltas
impl StructuralPartialEq for TrendDeltas
Auto Trait Implementations§
impl Freeze for TrendDeltas
impl RefUnwindSafe for TrendDeltas
impl Send for TrendDeltas
impl Sync for TrendDeltas
impl Unpin for TrendDeltas
impl UnsafeUnpin for TrendDeltas
impl UnwindSafe for TrendDeltas
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