pub struct ExperimentEvaluation {
pub base: BaseEvaluation,
pub id_type: String,
pub value: DynamicReturnable,
pub group: ExposableString,
pub is_device_based: bool,
pub is_in_layer: bool,
pub explicit_parameters: Option<Vec<String>>,
pub group_name: Option<String>,
pub is_experiment_active: Option<bool>,
pub is_user_in_experiment: Option<bool>,
pub undelegated_secondary_exposures: Option<Vec<SecondaryExposure>>,
}
Fields§
§base: BaseEvaluation
§id_type: String
§value: DynamicReturnable
§group: ExposableString
§is_device_based: bool
§is_in_layer: bool
§explicit_parameters: Option<Vec<String>>
§group_name: Option<String>
§is_experiment_active: Option<bool>
§is_user_in_experiment: Option<bool>
§undelegated_secondary_exposures: Option<Vec<SecondaryExposure>>
Trait Implementations§
Source§impl Clone for ExperimentEvaluation
impl Clone for ExperimentEvaluation
Source§fn clone(&self) -> ExperimentEvaluation
fn clone(&self) -> ExperimentEvaluation
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<'de> Deserialize<'de> for ExperimentEvaluation
impl<'de> Deserialize<'de> for ExperimentEvaluation
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<'a> From<&'a ExperimentEvaluation> for AnyEvaluation<'a>
impl<'a> From<&'a ExperimentEvaluation> for AnyEvaluation<'a>
Source§fn from(experiment_eval: &'a ExperimentEvaluation) -> Self
fn from(experiment_eval: &'a ExperimentEvaluation) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ExperimentEvaluation
impl RefUnwindSafe for ExperimentEvaluation
impl Send for ExperimentEvaluation
impl Sync for ExperimentEvaluation
impl Unpin for ExperimentEvaluation
impl UnwindSafe for ExperimentEvaluation
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