pub struct PerformanceTrend {
pub operation_name: String,
pub trend_slope: f64,
pub volatility: f64,
pub sample_count: usize,
pub improving: bool,
}
Expand description
Performance trend information
Fields§
§operation_name: String
§trend_slope: f64
§volatility: f64
§sample_count: usize
§improving: bool
Trait Implementations§
Source§impl Clone for PerformanceTrend
impl Clone for PerformanceTrend
Source§fn clone(&self) -> PerformanceTrend
fn clone(&self) -> PerformanceTrend
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 PerformanceTrend
impl RefUnwindSafe for PerformanceTrend
impl Send for PerformanceTrend
impl Sync for PerformanceTrend
impl Unpin for PerformanceTrend
impl UnwindSafe for PerformanceTrend
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