pub struct TrialComponentSimpleSummary {
pub created_by: Option<UserContext>,
pub creation_time: Option<f64>,
pub trial_component_arn: Option<String>,
pub trial_component_name: Option<String>,
pub trial_component_source: Option<TrialComponentSource>,
}
Expand description
A short summary of a trial component.
Fields§
§created_by: Option<UserContext>
§creation_time: Option<f64>
When the component was created.
trial_component_arn: Option<String>
The Amazon Resource Name (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 TrialComponentSimpleSummary
impl Clone for TrialComponentSimpleSummary
Source§fn clone(&self) -> TrialComponentSimpleSummary
fn clone(&self) -> TrialComponentSimpleSummary
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 TrialComponentSimpleSummary
impl Debug for TrialComponentSimpleSummary
Source§impl Default for TrialComponentSimpleSummary
impl Default for TrialComponentSimpleSummary
Source§fn default() -> TrialComponentSimpleSummary
fn default() -> TrialComponentSimpleSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TrialComponentSimpleSummary
impl<'de> Deserialize<'de> for TrialComponentSimpleSummary
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 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
Mutably borrows from an owned value. Read more