pub struct Experiment {
pub created_by: Option<UserContext>,
pub creation_time: Option<f64>,
pub description: Option<String>,
pub display_name: Option<String>,
pub experiment_arn: Option<String>,
pub experiment_name: Option<String>,
pub last_modified_by: Option<UserContext>,
pub last_modified_time: Option<f64>,
pub source: Option<ExperimentSource>,
pub tags: Option<Vec<Tag>>,
}
Expand description
The properties of an experiment as returned by the Search API.
Fields§
§created_by: Option<UserContext>
§creation_time: Option<f64>
When the experiment was created.
description: Option<String>
The description of the experiment.
display_name: Option<String>
The name of the experiment as displayed. If DisplayName
isn't specified, ExperimentName
is displayed.
experiment_arn: Option<String>
The Amazon Resource Name (ARN) of the experiment.
experiment_name: Option<String>
The name of the experiment.
last_modified_by: Option<UserContext>
§last_modified_time: Option<f64>
When the experiment was last modified.
source: Option<ExperimentSource>
The list of tags that are associated with the experiment. You can use Search API to search on the tags.
Trait Implementations§
Source§impl Clone for Experiment
impl Clone for Experiment
Source§fn clone(&self) -> Experiment
fn clone(&self) -> Experiment
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 Experiment
impl Debug for Experiment
Source§impl Default for Experiment
impl Default for Experiment
Source§fn default() -> Experiment
fn default() -> Experiment
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Experiment
impl<'de> Deserialize<'de> for Experiment
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 Experiment
impl PartialEq for Experiment
impl StructuralPartialEq for Experiment
Auto Trait Implementations§
impl Freeze for Experiment
impl RefUnwindSafe for Experiment
impl Send for Experiment
impl Sync for Experiment
impl Unpin for Experiment
impl UnwindSafe for Experiment
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