[][src]Struct google_analytics3::ExperimentVariations

pub struct ExperimentVariations {
    pub status: Option<String>,
    pub url: Option<String>,
    pub won: Option<bool>,
    pub name: Option<String>,
    pub weight: Option<f64>,
}

Array of variations. The first variation in the array is the original. The number of variations may not change once an experiment is in the RUNNING state. At least two variations are required before status can be set to RUNNING.

This type is not used in any activity, and only used as part of another schema.

Fields

status: Option<String>

Status of the variation. Possible values: "ACTIVE", "INACTIVE". INACTIVE variations are not served. This field may not be changed for an experiment whose status is ENDED.

url: Option<String>

The URL of the variation. This field may not be changed for an experiment whose status is RUNNING or ENDED.

won: Option<bool>

True if the experiment has ended and this variation performed (statistically) significantly better than the original. This field is read-only.

name: Option<String>

The name of the variation. This field is required when creating an experiment. This field may not be changed for an experiment whose status is ENDED.

weight: Option<f64>

Weight that this variation should receive. Only present if the experiment is running. This field is read-only.

Trait Implementations

impl Clone for ExperimentVariations[src]

impl Debug for ExperimentVariations[src]

impl Default for ExperimentVariations[src]

impl<'de> Deserialize<'de> for ExperimentVariations[src]

impl NestedType for ExperimentVariations[src]

impl Part for ExperimentVariations[src]

impl Serialize for ExperimentVariations[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any