Struct google_analyticsdata1_beta::api::ConcatenateExpression [−][src]
pub struct ConcatenateExpression {
pub delimiter: Option<String>,
pub dimension_names: Option<Vec<String>>,
}Expand description
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
Returns the “default value” for a type. Read more
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
Auto Trait Implementations
impl RefUnwindSafe for ConcatenateExpression
impl Send for ConcatenateExpression
impl Sync for ConcatenateExpression
impl Unpin for ConcatenateExpression
impl UnwindSafe for ConcatenateExpression
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more