pub enum DeltaSortKeyArg {
ScoreDelta,
CurrentCrap,
BaselineCrap,
Path,
}Expand description
Sort key for the delta block (issue #81).
Variants§
ScoreDelta
Magnitude of change descending — regressions first (default)
CurrentCrap
Current CRAP score descending; Removed rows last
BaselineCrap
Baseline CRAP score descending; Added rows last
Path
Alphabetical by file_path then qualified_name
Trait Implementations§
Source§impl Clone for DeltaSortKeyArg
impl Clone for DeltaSortKeyArg
Source§fn clone(&self) -> DeltaSortKeyArg
fn clone(&self) -> DeltaSortKeyArg
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 DeltaSortKeyArg
impl Debug for DeltaSortKeyArg
Source§impl From<DeltaSortKeyArg> for DeltaSortKey
impl From<DeltaSortKeyArg> for DeltaSortKey
Source§fn from(arg: DeltaSortKeyArg) -> Self
fn from(arg: DeltaSortKeyArg) -> Self
Converts to this type from the input type.
Source§impl ValueEnum for DeltaSortKeyArg
impl ValueEnum for DeltaSortKeyArg
impl Copy for DeltaSortKeyArg
Auto Trait Implementations§
impl Freeze for DeltaSortKeyArg
impl RefUnwindSafe for DeltaSortKeyArg
impl Send for DeltaSortKeyArg
impl Sync for DeltaSortKeyArg
impl Unpin for DeltaSortKeyArg
impl UnsafeUnpin for DeltaSortKeyArg
impl UnwindSafe for DeltaSortKeyArg
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