pub struct ExperimentResult {
pub feature_id: String,
pub value: Value,
pub variation_id: i64,
pub in_experiment: bool,
pub hash_used: bool,
pub hash_attribute: Option<String>,
pub hash_value: Option<Value>,
pub bucket: Option<f32>,
pub key: String,
pub sticky_bucket_used: bool,
}Fields§
§feature_id: String§value: Value§variation_id: i64§in_experiment: bool§hash_used: bool§hash_attribute: Option<String>§hash_value: Option<Value>§bucket: Option<f32>§key: String§sticky_bucket_used: boolTrait Implementations§
Source§impl Clone for ExperimentResult
impl Clone for ExperimentResult
Source§fn clone(&self) -> ExperimentResult
fn clone(&self) -> ExperimentResult
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 ExperimentResult
impl Debug for ExperimentResult
Auto Trait Implementations§
impl Freeze for ExperimentResult
impl RefUnwindSafe for ExperimentResult
impl Send for ExperimentResult
impl Sync for ExperimentResult
impl Unpin for ExperimentResult
impl UnwindSafe for ExperimentResult
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