[][src]Struct rusoto_codeguruprofiler::ProfilingStatus

pub struct ProfilingStatus {
    pub latest_agent_orchestrated_at: Option<f64>,
    pub latest_agent_profile_reported_at: Option<f64>,
    pub latest_aggregated_profile: Option<AggregatedProfileTime>,
}

The status of profiling of a profiling group.

Fields

latest_agent_orchestrated_at: Option<f64>

Timestamp of when the last interaction of the agent with configureAgent API for orchestration.

latest_agent_profile_reported_at: Option<f64>

Timestamp of when the latest agent profile was successfully reported.

latest_aggregated_profile: Option<AggregatedProfileTime>

The time range of latest aggregated profile available.

Trait Implementations

impl Clone for ProfilingStatus[src]

impl Debug for ProfilingStatus[src]

impl Default for ProfilingStatus[src]

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

impl PartialEq<ProfilingStatus> for ProfilingStatus[src]

impl StructuralPartialEq for ProfilingStatus[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: Deserialize<'de>, 
[src]

impl<T> From<T> 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,