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 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.
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§
Source§impl Clone for DescribeTrialResponse
impl Clone for DescribeTrialResponse
Source§fn clone(&self) -> DescribeTrialResponse
fn clone(&self) -> DescribeTrialResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DescribeTrialResponse
impl Debug for DescribeTrialResponse
Source§impl Default for DescribeTrialResponse
impl Default for DescribeTrialResponse
Source§fn default() -> DescribeTrialResponse
fn default() -> DescribeTrialResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeTrialResponse
impl<'de> Deserialize<'de> for DescribeTrialResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DescribeTrialResponse
impl PartialEq for DescribeTrialResponse
impl StructuralPartialEq for DescribeTrialResponse
Auto Trait Implementations§
impl Freeze for DescribeTrialResponse
impl RefUnwindSafe for DescribeTrialResponse
impl Send for DescribeTrialResponse
impl Sync for DescribeTrialResponse
impl Unpin for DescribeTrialResponse
impl UnwindSafe for DescribeTrialResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more