[−][src]Struct google_analyticsreporting4::ReportData
The data part of the report.
This type is not used in any activity, and only used as part of another schema.
Fields
rows: Option<Vec<ReportRow>>There's one ReportRow for every unique combination of dimensions.
maximums: Option<Vec<DateRangeValues>>Minimum and maximum values seen over all matching rows. These are both
empty when hideValueRanges in the request is false, or when
rowCount is zero.
minimums: Option<Vec<DateRangeValues>>Minimum and maximum values seen over all matching rows. These are both
empty when hideValueRanges in the request is false, or when
rowCount is zero.
is_data_golden: Option<bool>Indicates if response to this request is golden or not. Data is golden when the exact same request will not produce any new results if asked at a later point in time.
sampling_space_sizes: Option<Vec<String>>If the results are sampled, this returns the total number of samples present, one entry per date range. If the results are not sampled this field will not be defined. See developer guide for details.
totals: Option<Vec<DateRangeValues>>For each requested date range, for the set of all rows that match
the query, every requested value format gets a total. The total
for a value format is computed by first totaling the metrics
mentioned in the value format and then evaluating the value
format as a scalar expression. E.g., The "totals" for
3 / (ga:sessions + 2) we compute
3 / ((sum of all relevant ga:sessions) + 2).
Totals are computed before pagination.
row_count: Option<i32>Total number of matching rows for this query.
data_last_refreshed: Option<String>The last time the data in the report was refreshed. All the hits received before this timestamp are included in the calculation of the report.
samples_read_counts: Option<Vec<String>>If the results are sampled, this returns the total number of samples read, one entry per date range. If the results are not sampled this field will not be defined. See developer guide for details.
Trait Implementations
impl Clone for ReportData[src]
fn clone(&self) -> ReportData[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for ReportData[src]
impl Default for ReportData[src]
fn default() -> ReportData[src]
impl<'de> Deserialize<'de> for ReportData[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Part for ReportData[src]
impl Serialize for ReportData[src]
Auto Trait Implementations
impl RefUnwindSafe for ReportData
impl Send for ReportData
impl Sync for ReportData
impl Unpin for ReportData
impl UnwindSafe for ReportData
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Typeable for T where
T: Any,
T: Any,