[][src]Struct rusoto_codeguruprofiler::ProfilingGroupDescription

pub struct ProfilingGroupDescription {
    pub agent_orchestration_config: Option<AgentOrchestrationConfig>,
    pub arn: Option<String>,
    pub created_at: Option<f64>,
    pub name: Option<String>,
    pub profiling_status: Option<ProfilingStatus>,
    pub updated_at: Option<f64>,
}

The description of a profiling group.

Fields

agent_orchestration_config: Option<AgentOrchestrationConfig>arn: Option<String>created_at: Option<f64>

The timestamp of when the profiling group was created.

name: Option<String>profiling_status: Option<ProfilingStatus>updated_at: Option<f64>

The timestamp of when the profiling group was last updated.

Trait Implementations

impl Clone for ProfilingGroupDescription[src]

impl Debug for ProfilingGroupDescription[src]

impl Default for ProfilingGroupDescription[src]

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

impl PartialEq<ProfilingGroupDescription> for ProfilingGroupDescription[src]

impl StructuralPartialEq for ProfilingGroupDescription[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.