pub enum RolloutKind {
Rollout,
Experiment,
}
Expand description
RolloutKind describes whether a rollout is a simple percentage rollout or represents an experiment. Experiments have different behaviour for tracking and variation bucketing.
Variants§
Rollout
Represents a simple percentage rollout. This is the default rollout kind, and will be assumed if not otherwise specified.
Experiment
Represents an experiment. Experiments have different behaviour for tracking and variation bucketing.
Trait Implementations§
source§impl Clone for RolloutKind
impl Clone for RolloutKind
source§fn clone(&self) -> RolloutKind
fn clone(&self) -> RolloutKind
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 RolloutKind
impl Debug for RolloutKind
source§impl Default for RolloutKind
impl Default for RolloutKind
source§impl<'de> Deserialize<'de> for RolloutKind
impl<'de> Deserialize<'de> for RolloutKind
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