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
source§impl PartialEq for RolloutKind
impl PartialEq for RolloutKind
source§impl Serialize for RolloutKind
impl Serialize for RolloutKind
impl StructuralPartialEq for RolloutKind
Auto Trait Implementations§
impl Freeze for RolloutKind
impl RefUnwindSafe for RolloutKind
impl Send for RolloutKind
impl Sync for RolloutKind
impl Unpin for RolloutKind
impl UnwindSafe for RolloutKind
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)