pub struct PathReportCompatibleFields {
pub channel_groupings: Option<Vec<Dimension>>,
pub dimensions: Option<Vec<Dimension>>,
pub kind: Option<String>,
pub metrics: Option<Vec<Metric>>,
pub path_filters: Option<Vec<Dimension>>,
}Expand description
Represents fields that are compatible to be selected for a report of type “PATH”.
This type is not used in any activity, and only used as part of another schema.
Fields§
§channel_groupings: Option<Vec<Dimension>>Dimensions which are compatible to be selected in the “channelGroupings” section of the report.
dimensions: Option<Vec<Dimension>>Dimensions which are compatible to be selected in the “dimensions” section of the report.
kind: Option<String>The kind of resource this is, in this case dfareporting#pathReportCompatibleFields.
metrics: Option<Vec<Metric>>Metrics which are compatible to be selected in the “metricNames” section of the report.
path_filters: Option<Vec<Dimension>>Dimensions which are compatible to be selected in the “pathFilters” section of the report.
Trait Implementations§
Source§impl Clone for PathReportCompatibleFields
impl Clone for PathReportCompatibleFields
Source§fn clone(&self) -> PathReportCompatibleFields
fn clone(&self) -> PathReportCompatibleFields
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 PathReportCompatibleFields
impl Debug for PathReportCompatibleFields
Source§impl Default for PathReportCompatibleFields
impl Default for PathReportCompatibleFields
Source§fn default() -> PathReportCompatibleFields
fn default() -> PathReportCompatibleFields
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PathReportCompatibleFields
impl<'de> Deserialize<'de> for PathReportCompatibleFields
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
impl Part for PathReportCompatibleFields
Auto Trait Implementations§
impl Freeze for PathReportCompatibleFields
impl RefUnwindSafe for PathReportCompatibleFields
impl Send for PathReportCompatibleFields
impl Sync for PathReportCompatibleFields
impl Unpin for PathReportCompatibleFields
impl UnwindSafe for PathReportCompatibleFields
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