Struct google_analyticsdata1_beta::api::ConcatenateExpression[][src]

pub struct ConcatenateExpression {
    pub delimiter: Option<String>,
    pub dimension_names: Option<Vec<String>>,
}

Used to combine dimension values to a single dimension.

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

Fields

delimiter: Option<String>

The delimiter placed between dimension names. Delimiters are often single characters such as "|" or "," but can be longer strings. If a dimension value contains the delimiter, both will be present in response with no distinction. For example if dimension 1 value = "US,FR", dimension 2 value = "JP", and delimiter = ",", then the response will contain "US,FR,JP".

dimension_names: Option<Vec<String>>

Names of dimensions. The names must refer back to names in the dimensions field of the request.

Trait Implementations

impl Clone for ConcatenateExpression[src]

impl Debug for ConcatenateExpression[src]

impl Default for ConcatenateExpression[src]

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

impl Part for ConcatenateExpression[src]

impl Serialize for ConcatenateExpression[src]

Auto Trait Implementations

impl RefUnwindSafe for ConcatenateExpression[src]

impl Send for ConcatenateExpression[src]

impl Sync for ConcatenateExpression[src]

impl Unpin for ConcatenateExpression[src]

impl UnwindSafe for ConcatenateExpression[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.