Struct google_analyticsreporting4::api::ReportData [−][src]
The data part of the report.
This type is not used in any activity, and only used as part of another schema.
Fields
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.
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.
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.
row_count: Option<i32>Total number of matching rows for this query.
rows: Option<Vec<ReportRow>>There’s one ReportRow for every unique combination of dimensions.
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.
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.
Trait Implementations
impl Clone for ReportData[src]
fn clone(&self) -> ReportData[src]
pub 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,
pub 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> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[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.
pub fn to_owned(&self) -> T[src]
pub 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.
pub 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>,