pub struct ExperimentSource {
pub source_arn: String,
pub source_type: Option<String>,
}
Expand description
The source of the experiment.
Fields§
§source_arn: String
The Amazon Resource Name (ARN) of the source.
source_type: Option<String>
The source type.
Trait Implementations§
Source§impl Clone for ExperimentSource
impl Clone for ExperimentSource
Source§fn clone(&self) -> ExperimentSource
fn clone(&self) -> ExperimentSource
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 ExperimentSource
impl Debug for ExperimentSource
Source§impl Default for ExperimentSource
impl Default for ExperimentSource
Source§fn default() -> ExperimentSource
fn default() -> ExperimentSource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExperimentSource
impl<'de> Deserialize<'de> for ExperimentSource
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 ExperimentSource
impl PartialEq for ExperimentSource
impl StructuralPartialEq for ExperimentSource
Auto Trait Implementations§
impl Freeze for ExperimentSource
impl RefUnwindSafe for ExperimentSource
impl Send for ExperimentSource
impl Sync for ExperimentSource
impl Unpin for ExperimentSource
impl UnwindSafe for ExperimentSource
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