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§
source§impl Clone for ConcatenateExpression
impl Clone for ConcatenateExpression
source§fn clone(&self) -> ConcatenateExpression
fn clone(&self) -> ConcatenateExpression
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ConcatenateExpression
impl Debug for ConcatenateExpression
source§impl Default for ConcatenateExpression
impl Default for ConcatenateExpression
source§fn default() -> ConcatenateExpression
fn default() -> ConcatenateExpression
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ConcatenateExpression
impl<'de> Deserialize<'de> for ConcatenateExpression
source§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