pub struct DescribeExperimentResponse {
pub created_by: Option<UserContext>,
pub creation_time: Option<f64>,
pub description: Option<String>,
pub display_name: Option<String>,
pub experiment_arn: Option<String>,
pub experiment_name: Option<String>,
pub last_modified_by: Option<UserContext>,
pub last_modified_time: Option<f64>,
pub source: Option<ExperimentSource>,
}Fields§
§created_by: Option<UserContext>Who created the experiment.
creation_time: Option<f64>When the experiment was created.
description: Option<String>The description of the experiment.
display_name: Option<String>The name of the experiment as displayed. If DisplayName isn't specified, ExperimentName is displayed.
experiment_arn: Option<String>The Amazon Resource Name (ARN) of the experiment.
experiment_name: Option<String>The name of the experiment.
last_modified_by: Option<UserContext>Who last modified the experiment.
last_modified_time: Option<f64>When the experiment was last modified.
source: Option<ExperimentSource>The ARN of the source and, optionally, the type.
Trait Implementations§
Source§impl Clone for DescribeExperimentResponse
impl Clone for DescribeExperimentResponse
Source§fn clone(&self) -> DescribeExperimentResponse
fn clone(&self) -> DescribeExperimentResponse
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 DescribeExperimentResponse
impl Debug for DescribeExperimentResponse
Source§impl Default for DescribeExperimentResponse
impl Default for DescribeExperimentResponse
Source§fn default() -> DescribeExperimentResponse
fn default() -> DescribeExperimentResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeExperimentResponse
impl<'de> Deserialize<'de> for DescribeExperimentResponse
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
impl StructuralPartialEq for DescribeExperimentResponse
Auto Trait Implementations§
impl Freeze for DescribeExperimentResponse
impl RefUnwindSafe for DescribeExperimentResponse
impl Send for DescribeExperimentResponse
impl Sync for DescribeExperimentResponse
impl Unpin for DescribeExperimentResponse
impl UnwindSafe for DescribeExperimentResponse
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