[][src]Struct google_analytics3::GoalEventDetailsEventConditions

pub struct GoalEventDetailsEventConditions {
    pub expression: Option<String>,
    pub match_type: Option<String>,
    pub type_: Option<String>,
    pub comparison_type: Option<String>,
    pub comparison_value: Option<String>,
}

List of event conditions.

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

Fields

expression: Option<String>

Expression used for this match.

match_type: Option<String>

Type of the match to be performed. Possible values are REGEXP, BEGINS_WITH, or EXACT.

type_: Option<String>

Type of this event condition. Possible values are CATEGORY, ACTION, LABEL, or VALUE.

comparison_type: Option<String>

Type of comparison. Possible values are LESS_THAN, GREATER_THAN or EQUAL.

comparison_value: Option<String>

Value used for this comparison.

Trait Implementations

impl Clone for GoalEventDetailsEventConditions[src]

impl Debug for GoalEventDetailsEventConditions[src]

impl Default for GoalEventDetailsEventConditions[src]

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

impl NestedType for GoalEventDetailsEventConditions[src]

impl Part for GoalEventDetailsEventConditions[src]

impl Serialize for GoalEventDetailsEventConditions[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