pub struct PathReportDimensionValue {
pub dimension_name: Option<String>,
pub ids: Option<Vec<String>>,
pub kind: Option<String>,
pub match_type: Option<String>,
pub values: Option<Vec<String>>,
}Expand description
Represents a PathReportDimensionValue 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.
ids: Option<Vec<String>>The possible ID’s associated with the value if available.
kind: Option<String>The kind of resource this is, in this case dfareporting#pathReportDimensionValue.
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.
values: Option<Vec<String>>The possible values of the dimension.
Trait Implementations§
Source§impl Clone for PathReportDimensionValue
impl Clone for PathReportDimensionValue
Source§fn clone(&self) -> PathReportDimensionValue
fn clone(&self) -> PathReportDimensionValue
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 PathReportDimensionValue
impl Debug for PathReportDimensionValue
Source§impl Default for PathReportDimensionValue
impl Default for PathReportDimensionValue
Source§fn default() -> PathReportDimensionValue
fn default() -> PathReportDimensionValue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PathReportDimensionValue
impl<'de> Deserialize<'de> for PathReportDimensionValue
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 PathReportDimensionValue
impl Serialize for PathReportDimensionValue
impl Part for PathReportDimensionValue
Auto Trait Implementations§
impl Freeze for PathReportDimensionValue
impl RefUnwindSafe for PathReportDimensionValue
impl Send for PathReportDimensionValue
impl Sync for PathReportDimensionValue
impl Unpin for PathReportDimensionValue
impl UnwindSafe for PathReportDimensionValue
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