pub struct TrialComponentSummary {
pub created_by: Option<UserContext>,
pub creation_time: Option<f64>,
pub display_name: Option<String>,
pub end_time: Option<f64>,
pub last_modified_by: Option<UserContext>,
pub last_modified_time: Option<f64>,
pub start_time: Option<f64>,
pub status: Option<TrialComponentStatus>,
pub trial_component_arn: Option<String>,
pub trial_component_name: Option<String>,
pub trial_component_source: Option<TrialComponentSource>,
}Expand description
A summary of the properties of a trial component. To get all the properties, call the DescribeTrialComponent API and provide the TrialComponentName.
Fields§
§created_by: Option<UserContext>Who created the component.
creation_time: Option<f64>When the component was created.
display_name: Option<String>The name of the component as displayed. If DisplayName isn't specified, TrialComponentName is displayed.
end_time: Option<f64>When the component ended.
last_modified_by: Option<UserContext>Who last modified the component.
last_modified_time: Option<f64>When the component was last modified.
start_time: Option<f64>When the component started.
status: Option<TrialComponentStatus>The status of the component. States include:
-
InProgress
-
Completed
-
Failed
trial_component_arn: Option<String>The ARN of the trial component.
trial_component_name: Option<String>The name of the trial component.
trial_component_source: Option<TrialComponentSource>Trait Implementations§
Source§impl Clone for TrialComponentSummary
impl Clone for TrialComponentSummary
Source§fn clone(&self) -> TrialComponentSummary
fn clone(&self) -> TrialComponentSummary
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 TrialComponentSummary
impl Debug for TrialComponentSummary
Source§impl Default for TrialComponentSummary
impl Default for TrialComponentSummary
Source§fn default() -> TrialComponentSummary
fn default() -> TrialComponentSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TrialComponentSummary
impl<'de> Deserialize<'de> for TrialComponentSummary
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 TrialComponentSummary
impl PartialEq for TrialComponentSummary
impl StructuralPartialEq for TrialComponentSummary
Auto Trait Implementations§
impl Freeze for TrialComponentSummary
impl RefUnwindSafe for TrialComponentSummary
impl Send for TrialComponentSummary
impl Sync for TrialComponentSummary
impl Unpin for TrialComponentSummary
impl UnwindSafe for TrialComponentSummary
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