pub struct HotPathThresholds {
pub warn_individual_increase_percent: Option<f64>,
}Expand description
Hot path thresholds
Fields§
§warn_individual_increase_percent: Option<f64>Warn if any single hot path increases by more than this percentage
Trait Implementations§
Source§impl Clone for HotPathThresholds
impl Clone for HotPathThresholds
Source§fn clone(&self) -> HotPathThresholds
fn clone(&self) -> HotPathThresholds
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 HotPathThresholds
impl Debug for HotPathThresholds
Source§impl Default for HotPathThresholds
impl Default for HotPathThresholds
Source§fn default() -> HotPathThresholds
fn default() -> HotPathThresholds
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HotPathThresholds
impl<'de> Deserialize<'de> for HotPathThresholds
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for HotPathThresholds
impl RefUnwindSafe for HotPathThresholds
impl Send for HotPathThresholds
impl Sync for HotPathThresholds
impl Unpin for HotPathThresholds
impl UnsafeUnpin for HotPathThresholds
impl UnwindSafe for HotPathThresholds
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