pub struct Match {
pub frame_address: Option<String>,
pub target_frames_index: Option<i64>,
pub threshold_breach_value: Option<f64>,
}Expand description
The part of a profile that contains a recommendation found during analysis.
Fields§
§frame_address: Option<String>The location in the profiling graph that contains a recommendation found during analysis.
target_frames_index: Option<i64>The target frame that triggered a match.
threshold_breach_value: Option<f64>The value in the profile data that exceeded the recommendation threshold.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Match
impl<'de> Deserialize<'de> for Match
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
impl StructuralPartialEq for Match
Auto Trait Implementations§
impl Freeze for Match
impl RefUnwindSafe for Match
impl Send for Match
impl Sync for Match
impl Unpin for Match
impl UnwindSafe for Match
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