pub enum GradeDimension {
Strength,
Distance,
Volatility,
}Variants§
Strength
Coupling strength is the dominant issue driver.
Distance
Coupling distance is the dominant issue driver.
Volatility
Volatility or churn is the dominant issue driver.
Trait Implementations§
Source§impl Clone for GradeDimension
impl Clone for GradeDimension
Source§fn clone(&self) -> GradeDimension
fn clone(&self) -> GradeDimension
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 moreimpl Copy for GradeDimension
Source§impl Debug for GradeDimension
impl Debug for GradeDimension
Source§impl Display for GradeDimension
impl Display for GradeDimension
impl Eq for GradeDimension
Source§impl Hash for GradeDimension
impl Hash for GradeDimension
Source§impl PartialEq for GradeDimension
impl PartialEq for GradeDimension
Source§fn eq(&self, other: &GradeDimension) -> bool
fn eq(&self, other: &GradeDimension) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GradeDimension
Auto Trait Implementations§
impl Freeze for GradeDimension
impl RefUnwindSafe for GradeDimension
impl Send for GradeDimension
impl Sync for GradeDimension
impl Unpin for GradeDimension
impl UnsafeUnpin for GradeDimension
impl UnwindSafe for GradeDimension
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<A, B, T> HttpServerConnExec<A, B> for Twhere
B: Body,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more