pub struct DimensionValue {
pub dimension_name: Option<String>,
pub etag: Option<String>,
pub id: Option<String>,
pub kind: Option<String>,
pub match_type: Option<String>,
pub value: Option<String>,
}Expand description
Represents a DimensionValue resource.
This type is not used in any activity, and only used as part of another schema.
Fields§
§dimension_name: Option<String>The name of the dimension.
etag: Option<String>The eTag of this response for caching purposes.
id: Option<String>The ID associated with the value if available.
kind: Option<String>The kind of resource this is, in this case dfareporting#dimensionValue.
match_type: Option<String>Determines how the ‘value’ field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, ‘’ is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions (‘dfa:paidSearch’) allow a matchType other than EXACT.
value: Option<String>The value of the dimension.
Trait Implementations§
Source§impl Clone for DimensionValue
impl Clone for DimensionValue
Source§fn clone(&self) -> DimensionValue
fn clone(&self) -> DimensionValue
Returns a duplicate 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 DimensionValue
impl Debug for DimensionValue
Source§impl Default for DimensionValue
impl Default for DimensionValue
Source§fn default() -> DimensionValue
fn default() -> DimensionValue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DimensionValue
impl<'de> Deserialize<'de> for DimensionValue
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
Source§impl Serialize for DimensionValue
impl Serialize for DimensionValue
impl Part for DimensionValue
Auto Trait Implementations§
impl Freeze for DimensionValue
impl RefUnwindSafe for DimensionValue
impl Send for DimensionValue
impl Sync for DimensionValue
impl Unpin for DimensionValue
impl UnwindSafe for DimensionValue
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more