pub struct TrialComponentSourceDetail {
pub processing_job: Option<ProcessingJob>,
pub source_arn: Option<String>,
pub training_job: Option<TrainingJob>,
}Expand description
Detailed information about the source of a trial component. Either ProcessingJob or TrainingJob is returned.
Fields§
§processing_job: Option<ProcessingJob>Information about a processing job that's the source of a trial component.
source_arn: Option<String>The Amazon Resource Name (ARN) of the source.
training_job: Option<TrainingJob>Information about a training job that's the source of a trial component.
Trait Implementations§
Source§impl Clone for TrialComponentSourceDetail
impl Clone for TrialComponentSourceDetail
Source§fn clone(&self) -> TrialComponentSourceDetail
fn clone(&self) -> TrialComponentSourceDetail
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 TrialComponentSourceDetail
impl Debug for TrialComponentSourceDetail
Source§impl Default for TrialComponentSourceDetail
impl Default for TrialComponentSourceDetail
Source§fn default() -> TrialComponentSourceDetail
fn default() -> TrialComponentSourceDetail
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TrialComponentSourceDetail
impl<'de> Deserialize<'de> for TrialComponentSourceDetail
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 TrialComponentSourceDetail
Auto Trait Implementations§
impl Freeze for TrialComponentSourceDetail
impl RefUnwindSafe for TrialComponentSourceDetail
impl Send for TrialComponentSourceDetail
impl Sync for TrialComponentSourceDetail
impl Unpin for TrialComponentSourceDetail
impl UnwindSafe for TrialComponentSourceDetail
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