pub struct PerformanceDegradation {
pub operation: String,
pub expected_time: f64,
pub actual_time: f64,
pub degradation_factor: f64,
pub suggested_action: String,
}
Expand description
Performance degradation information
Fields§
§operation: String
§expected_time: f64
§actual_time: f64
§degradation_factor: f64
§suggested_action: String
Trait Implementations§
Source§impl Clone for PerformanceDegradation
impl Clone for PerformanceDegradation
Source§fn clone(&self) -> PerformanceDegradation
fn clone(&self) -> PerformanceDegradation
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 PerformanceDegradation
impl RefUnwindSafe for PerformanceDegradation
impl Send for PerformanceDegradation
impl Sync for PerformanceDegradation
impl Unpin for PerformanceDegradation
impl UnwindSafe for PerformanceDegradation
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