pub struct OptimizationStatus {
pub is_optimized: bool,
pub optimization_level: f64,
pub active_optimizations: Vec<String>,
pub performance_score: f64,
pub last_optimization: Instant,
}Fields§
§is_optimized: bool§optimization_level: f64§active_optimizations: Vec<String>§performance_score: f64§last_optimization: InstantTrait Implementations§
Auto Trait Implementations§
impl Freeze for OptimizationStatus
impl RefUnwindSafe for OptimizationStatus
impl Send for OptimizationStatus
impl Sync for OptimizationStatus
impl Unpin for OptimizationStatus
impl UnsafeUnpin for OptimizationStatus
impl UnwindSafe for OptimizationStatus
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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