Struct google_analyticsdata1_beta::api::DimensionExpression[][src]

pub struct DimensionExpression {
    pub concatenate: Option<ConcatenateExpression>,
    pub lower_case: Option<CaseExpression>,
    pub upper_case: Option<CaseExpression>,
}

Used to express a dimension which is the result of a formula of multiple dimensions. Example usages: 1) lower_case(dimension) 2) concatenate(dimension1, symbol, dimension2).

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

Fields

concatenate: Option<ConcatenateExpression>

Used to combine dimension values to a single dimension. For example, dimension "country, city": concatenate(country, ", ", city).

lower_case: Option<CaseExpression>

Used to convert a dimension value to lower case.

upper_case: Option<CaseExpression>

Used to convert a dimension value to upper case.

Trait Implementations

impl Clone for DimensionExpression[src]

impl Debug for DimensionExpression[src]

impl Default for DimensionExpression[src]

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

impl Part for DimensionExpression[src]

impl Serialize for DimensionExpression[src]

Auto Trait Implementations

impl RefUnwindSafe for DimensionExpression[src]

impl Send for DimensionExpression[src]

impl Sync for DimensionExpression[src]

impl Unpin for DimensionExpression[src]

impl UnwindSafe for DimensionExpression[src]

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> Instrument 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.