[][src]Struct rusoto_codeguruprofiler::FrameMetric

pub struct FrameMetric {
    pub frame_name: String,
    pub thread_states: Vec<String>,
    pub type_: String,
}

The frame name, metric type, and thread states. These are used to derive the value of the metric for the frame.

Fields

frame_name: String

Name of the method common across the multiple occurrences of a frame in an application profile.

thread_states: Vec<String>

List of application runtime thread states used to get the counts for a frame a derive a metric value.

type_: String

A type of aggregation that specifies how a metric for a frame is analyzed. The supported value AggregatedRelativeTotalTime is an aggregation of the metric value for one frame that is calculated across the occurrences of all frames in a profile.

Trait Implementations

impl Clone for FrameMetric[src]

impl Debug for FrameMetric[src]

impl Default for FrameMetric[src]

impl<'de> Deserialize<'de> for FrameMetric[src]

impl PartialEq<FrameMetric> for FrameMetric[src]

impl Serialize for FrameMetric[src]

impl StructuralPartialEq for FrameMetric[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.