Struct google_analyticsdata1_beta::api::DimensionExpression [−][src]
pub struct DimensionExpression {
pub concatenate: Option<ConcatenateExpression>,
pub lower_case: Option<CaseExpression>,
pub upper_case: Option<CaseExpression>,
}Expand description
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
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 DimensionExpression
impl Send for DimensionExpression
impl Sync for DimensionExpression
impl Unpin for DimensionExpression
impl UnwindSafe for DimensionExpression
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more