#[non_exhaustive]pub struct DescribeExperimentOutput {
pub experiment_name: Option<String>,
pub experiment_arn: Option<String>,
pub display_name: Option<String>,
pub source: Option<ExperimentSource>,
pub description: Option<String>,
pub creation_time: Option<DateTime>,
pub created_by: Option<UserContext>,
pub last_modified_time: Option<DateTime>,
pub last_modified_by: Option<UserContext>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.experiment_name: Option<String>
The name of the experiment.
experiment_arn: Option<String>
The Amazon Resource Name (ARN) of the experiment.
display_name: Option<String>
The name of the experiment as displayed. If DisplayName
isn't specified, ExperimentName
is displayed.
source: Option<ExperimentSource>
The Amazon Resource Name (ARN) of the source and, optionally, the type.
description: Option<String>
The description of the experiment.
creation_time: Option<DateTime>
When the experiment was created.
created_by: Option<UserContext>
Who created the experiment.
last_modified_time: Option<DateTime>
When the experiment was last modified.
last_modified_by: Option<UserContext>
Who last modified the experiment.
Implementations§
source§impl DescribeExperimentOutput
impl DescribeExperimentOutput
sourcepub fn experiment_name(&self) -> Option<&str>
pub fn experiment_name(&self) -> Option<&str>
The name of the experiment.
sourcepub fn experiment_arn(&self) -> Option<&str>
pub fn experiment_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the experiment.
sourcepub fn display_name(&self) -> Option<&str>
pub fn display_name(&self) -> Option<&str>
The name of the experiment as displayed. If DisplayName
isn't specified, ExperimentName
is displayed.
sourcepub fn source(&self) -> Option<&ExperimentSource>
pub fn source(&self) -> Option<&ExperimentSource>
The Amazon Resource Name (ARN) of the source and, optionally, the type.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the experiment.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
When the experiment was created.
sourcepub fn created_by(&self) -> Option<&UserContext>
pub fn created_by(&self) -> Option<&UserContext>
Who created the experiment.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
When the experiment was last modified.
sourcepub fn last_modified_by(&self) -> Option<&UserContext>
pub fn last_modified_by(&self) -> Option<&UserContext>
Who last modified the experiment.
source§impl DescribeExperimentOutput
impl DescribeExperimentOutput
sourcepub fn builder() -> DescribeExperimentOutputBuilder
pub fn builder() -> DescribeExperimentOutputBuilder
Creates a new builder-style object to manufacture DescribeExperimentOutput
.
Trait Implementations§
source§impl Clone for DescribeExperimentOutput
impl Clone for DescribeExperimentOutput
source§fn clone(&self) -> DescribeExperimentOutput
fn clone(&self) -> DescribeExperimentOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeExperimentOutput
impl Debug for DescribeExperimentOutput
source§impl PartialEq for DescribeExperimentOutput
impl PartialEq for DescribeExperimentOutput
source§impl RequestId for DescribeExperimentOutput
impl RequestId for DescribeExperimentOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for DescribeExperimentOutput
Auto Trait Implementations§
impl Freeze for DescribeExperimentOutput
impl RefUnwindSafe for DescribeExperimentOutput
impl Send for DescribeExperimentOutput
impl Sync for DescribeExperimentOutput
impl Unpin for DescribeExperimentOutput
impl UnwindSafe for DescribeExperimentOutput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more