Struct aws_sdk_codeguruprofiler::model::Match [−][src]
#[non_exhaustive]pub struct Match {
pub target_frames_index: Option<i32>,
pub frame_address: Option<String>,
pub threshold_breach_value: Option<f64>,
}
Expand description
The part of a profile that contains a recommendation found during analysis.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.target_frames_index: Option<i32>
The target frame that triggered a match.
frame_address: Option<String>
The location in the profiling graph that contains a recommendation found during analysis.
threshold_breach_value: Option<f64>
The value in the profile data that exceeded the recommendation threshold.
Implementations
The target frame that triggered a match.
The location in the profiling graph that contains a recommendation found during analysis.
The value in the profile data that exceeded the recommendation threshold.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Match
impl UnwindSafe for Match
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more