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.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- query dimension values (none)
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
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
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>,
Source§impl Serialize for DimensionValue
impl Serialize for DimensionValue
impl Resource 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more