pub struct ExperimentConfig {
pub experiment_name: Option<String>,
pub trial_component_display_name: Option<String>,
pub trial_name: Option<String>,
}
Expand description
Configuration for the experiment.
Fields§
§experiment_name: Option<String>
The name of the experiment.
trial_component_display_name: Option<String>
Display name for the trial component.
trial_name: Option<String>
The name of the trial.
Trait Implementations§
Source§impl Clone for ExperimentConfig
impl Clone for ExperimentConfig
Source§fn clone(&self) -> ExperimentConfig
fn clone(&self) -> ExperimentConfig
Returns a copy 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 ExperimentConfig
impl Debug for ExperimentConfig
Source§impl Default for ExperimentConfig
impl Default for ExperimentConfig
Source§fn default() -> ExperimentConfig
fn default() -> ExperimentConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExperimentConfig
impl<'de> Deserialize<'de> for ExperimentConfig
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 ExperimentConfig
impl PartialEq for ExperimentConfig
Source§impl Serialize for ExperimentConfig
impl Serialize for ExperimentConfig
impl StructuralPartialEq for ExperimentConfig
Auto Trait Implementations§
impl Freeze for ExperimentConfig
impl RefUnwindSafe for ExperimentConfig
impl Send for ExperimentConfig
impl Sync for ExperimentConfig
impl Unpin for ExperimentConfig
impl UnwindSafe for ExperimentConfig
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