#[non_exhaustive]pub struct TrialComponentSimpleSummary {
pub trial_component_name: Option<String>,
pub trial_component_arn: Option<String>,
pub trial_component_source: Option<TrialComponentSource>,
pub creation_time: Option<DateTime>,
pub created_by: Option<UserContext>,
}
Expand description
A short summary of a trial component.
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.trial_component_name: Option<String>
The name of the trial component.
trial_component_arn: Option<String>
The Amazon Resource Name (ARN) of the trial component.
trial_component_source: Option<TrialComponentSource>
The Amazon Resource Name (ARN) and job type of the source of a trial component.
creation_time: Option<DateTime>
When the component was created.
created_by: Option<UserContext>
Information about the user who created or modified an experiment, trial, trial component, lineage group, project, or model card.
Implementations§
source§impl TrialComponentSimpleSummary
impl TrialComponentSimpleSummary
sourcepub fn trial_component_name(&self) -> Option<&str>
pub fn trial_component_name(&self) -> Option<&str>
The name of the trial component.
sourcepub fn trial_component_arn(&self) -> Option<&str>
pub fn trial_component_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the trial component.
sourcepub fn trial_component_source(&self) -> Option<&TrialComponentSource>
pub fn trial_component_source(&self) -> Option<&TrialComponentSource>
The Amazon Resource Name (ARN) and job type of the source of a trial component.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
When the component was created.
sourcepub fn created_by(&self) -> Option<&UserContext>
pub fn created_by(&self) -> Option<&UserContext>
Information about the user who created or modified an experiment, trial, trial component, lineage group, project, or model card.
source§impl TrialComponentSimpleSummary
impl TrialComponentSimpleSummary
sourcepub fn builder() -> TrialComponentSimpleSummaryBuilder
pub fn builder() -> TrialComponentSimpleSummaryBuilder
Creates a new builder-style object to manufacture TrialComponentSimpleSummary
.
Trait Implementations§
source§impl Clone for TrialComponentSimpleSummary
impl Clone for TrialComponentSimpleSummary
source§fn clone(&self) -> TrialComponentSimpleSummary
fn clone(&self) -> TrialComponentSimpleSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for TrialComponentSimpleSummary
impl Debug for TrialComponentSimpleSummary
impl StructuralPartialEq for TrialComponentSimpleSummary
Auto Trait Implementations§
impl Freeze for TrialComponentSimpleSummary
impl RefUnwindSafe for TrialComponentSimpleSummary
impl Send for TrialComponentSimpleSummary
impl Sync for TrialComponentSimpleSummary
impl Unpin for TrialComponentSimpleSummary
impl UnwindSafe for TrialComponentSimpleSummary
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