pub struct CompatibleFields {
pub cross_dimension_reach_report_compatible_fields: Option<CrossDimensionReachReportCompatibleFields>,
pub floodlight_report_compatible_fields: Option<FloodlightReportCompatibleFields>,
pub kind: Option<String>,
pub path_to_conversion_report_compatible_fields: Option<PathToConversionReportCompatibleFields>,
pub reach_report_compatible_fields: Option<ReachReportCompatibleFields>,
pub report_compatible_fields: Option<ReportCompatibleFields>,
}
Expand description
Represents a response to the queryCompatibleFields method.
§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).
- compatible fields query reports (response)
Fields§
§cross_dimension_reach_report_compatible_fields: Option<CrossDimensionReachReportCompatibleFields>
Contains items that are compatible to be selected for a report of type “CROSS_DIMENSION_REACH”.
floodlight_report_compatible_fields: Option<FloodlightReportCompatibleFields>
Contains items that are compatible to be selected for a report of type “FLOODLIGHT”.
kind: Option<String>
The kind of resource this is, in this case dfareporting#compatibleFields.
path_to_conversion_report_compatible_fields: Option<PathToConversionReportCompatibleFields>
Contains items that are compatible to be selected for a report of type “PATH_TO_CONVERSION”.
reach_report_compatible_fields: Option<ReachReportCompatibleFields>
Contains items that are compatible to be selected for a report of type “REACH”.
report_compatible_fields: Option<ReportCompatibleFields>
Contains items that are compatible to be selected for a report of type “STANDARD”.
Trait Implementations§
Source§impl Clone for CompatibleFields
impl Clone for CompatibleFields
Source§fn clone(&self) -> CompatibleFields
fn clone(&self) -> CompatibleFields
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for CompatibleFields
impl Debug for CompatibleFields
Source§impl Default for CompatibleFields
impl Default for CompatibleFields
Source§fn default() -> CompatibleFields
fn default() -> CompatibleFields
Source§impl<'de> Deserialize<'de> for CompatibleFields
impl<'de> Deserialize<'de> for CompatibleFields
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 CompatibleFields
impl Serialize for CompatibleFields
impl ResponseResult for CompatibleFields
Auto Trait Implementations§
impl Freeze for CompatibleFields
impl RefUnwindSafe for CompatibleFields
impl Send for CompatibleFields
impl Sync for CompatibleFields
impl Unpin for CompatibleFields
impl UnwindSafe for CompatibleFields
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