[][src]Struct rusoto_sagemaker::DescribeTrialResponse

pub struct DescribeTrialResponse {
    pub created_by: Option<UserContext>,
    pub creation_time: Option<f64>,
    pub display_name: Option<String>,
    pub experiment_name: Option<String>,
    pub last_modified_by: Option<UserContext>,
    pub last_modified_time: Option<f64>,
    pub metadata_properties: Option<MetadataProperties>,
    pub source: Option<TrialSource>,
    pub trial_arn: Option<String>,
    pub trial_name: Option<String>,
}

Fields

created_by: Option<UserContext>

Who created the trial.

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.

experiment_name: Option<String>

The name of the experiment the trial is part of.

last_modified_by: Option<UserContext>

Who last modified the trial.

last_modified_time: Option<f64>

When the trial was last modified.

metadata_properties: Option<MetadataProperties>source: Option<TrialSource>

The Amazon Resource Name (ARN) of the source and, optionally, the job type.

trial_arn: Option<String>

The Amazon Resource Name (ARN) of the trial.

trial_name: Option<String>

The name of the trial.

Trait Implementations

impl Clone for DescribeTrialResponse[src]

impl Debug for DescribeTrialResponse[src]

impl Default for DescribeTrialResponse[src]

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

impl PartialEq<DescribeTrialResponse> for DescribeTrialResponse[src]

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