[][src]Struct rusoto_sagemaker::TrialSummary

pub struct TrialSummary {
    pub creation_time: Option<f64>,
    pub display_name: Option<String>,
    pub last_modified_time: Option<f64>,
    pub trial_arn: Option<String>,
    pub trial_name: Option<String>,
    pub trial_source: Option<TrialSource>,
}

A summary of the properties of a trial. To get the complete set of properties, call the DescribeTrial API and provide the TrialName.

Fields

creation_time: Option<f64>

When the trial was created.

display_name: Option<String>

The name of the trial as displayed. If DisplayName isn't specified, TrialName is displayed.

last_modified_time: Option<f64>

When the trial was last modified.

trial_arn: Option<String>

The Amazon Resource Name (ARN) of the trial.

trial_name: Option<String>

The name of the trial.

trial_source: Option<TrialSource>

Trait Implementations

impl Clone for TrialSummary[src]

impl Debug for TrialSummary[src]

impl Default for TrialSummary[src]

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

impl PartialEq<TrialSummary> for TrialSummary[src]

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