pub struct LearningCurveInfo {
pub curve_type: String,
pub trend_analysis: String,
pub convergence_point: Option<usize>,
pub learning_efficiency: f64,
pub overfitting_risk: f64,
pub optimal_stopping_point: Option<usize>,
pub curve_smoothness: f64,
pub stability_score: f64,
}
Fields§
§curve_type: String
§trend_analysis: String
§convergence_point: Option<usize>
§learning_efficiency: f64
§overfitting_risk: f64
§optimal_stopping_point: Option<usize>
§curve_smoothness: f64
§stability_score: f64
Trait Implementations§
Source§impl Clone for LearningCurveInfo
impl Clone for LearningCurveInfo
Source§fn clone(&self) -> LearningCurveInfo
fn clone(&self) -> LearningCurveInfo
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 LearningCurveInfo
impl Debug for LearningCurveInfo
Source§impl PartialEq for LearningCurveInfo
impl PartialEq for LearningCurveInfo
Source§impl Serialize for LearningCurveInfo
impl Serialize for LearningCurveInfo
impl StructuralPartialEq for LearningCurveInfo
Auto Trait Implementations§
impl Freeze for LearningCurveInfo
impl RefUnwindSafe for LearningCurveInfo
impl Send for LearningCurveInfo
impl Sync for LearningCurveInfo
impl Unpin for LearningCurveInfo
impl UnwindSafe for LearningCurveInfo
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