pub struct DegradationIndicators {
pub accuracy_drop: Float,
pub variance_increase: Float,
pub latency_increase: Float,
pub memory_increase: Float,
pub degradation_score: Float,
}Expand description
Performance degradation indicators
Fields§
§accuracy_drop: FloatAccuracy drop from baseline
variance_increase: FloatIncrease in prediction variance
latency_increase: FloatLatency increase
memory_increase: FloatMemory usage increase
degradation_score: FloatOverall degradation score
Trait Implementations§
Source§impl Clone for DegradationIndicators
impl Clone for DegradationIndicators
Source§fn clone(&self) -> DegradationIndicators
fn clone(&self) -> DegradationIndicators
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 moreAuto Trait Implementations§
impl Freeze for DegradationIndicators
impl RefUnwindSafe for DegradationIndicators
impl Send for DegradationIndicators
impl Sync for DegradationIndicators
impl Unpin for DegradationIndicators
impl UnwindSafe for DegradationIndicators
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,
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