pub struct RegressionTestInfo {
pub test_passed: bool,
pub performance_degradation: f64,
pub accuracy_change: f64,
pub latency_change: f64,
pub memory_change: f64,
pub failed_checks: Vec<String>,
pub severity_level: String,
pub test_coverage: f64,
pub confidence_level: f64,
pub recommended_action: String,
}
Fields§
§test_passed: bool
§performance_degradation: f64
§accuracy_change: f64
§latency_change: f64
§memory_change: f64
§failed_checks: Vec<String>
§severity_level: String
§test_coverage: f64
§confidence_level: f64
§recommended_action: String
Trait Implementations§
Source§impl Clone for RegressionTestInfo
impl Clone for RegressionTestInfo
Source§fn clone(&self) -> RegressionTestInfo
fn clone(&self) -> RegressionTestInfo
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 RegressionTestInfo
impl Debug for RegressionTestInfo
Source§impl PartialEq for RegressionTestInfo
impl PartialEq for RegressionTestInfo
Source§impl Serialize for RegressionTestInfo
impl Serialize for RegressionTestInfo
impl StructuralPartialEq for RegressionTestInfo
Auto Trait Implementations§
impl Freeze for RegressionTestInfo
impl RefUnwindSafe for RegressionTestInfo
impl Send for RegressionTestInfo
impl Sync for RegressionTestInfo
impl Unpin for RegressionTestInfo
impl UnwindSafe for RegressionTestInfo
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> 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