Struct gapi_grpc::google::analytics::data::v1alpha::RunReportResponse[][src]

pub struct RunReportResponse {
    pub dimension_headers: Vec<DimensionHeader>,
    pub metric_headers: Vec<MetricHeader>,
    pub rows: Vec<Row>,
    pub totals: Vec<Row>,
    pub maximums: Vec<Row>,
    pub minimums: Vec<Row>,
    pub row_count: i32,
    pub metadata: Option<ResponseMetaData>,
    pub property_quota: Option<PropertyQuota>,
}

The response report table corresponding to a request.

Fields

dimension_headers: Vec<DimensionHeader>

Describes dimension columns. The number of DimensionHeaders and ordering of DimensionHeaders matches the dimensions present in rows.

metric_headers: Vec<MetricHeader>

Describes metric columns. The number of MetricHeaders and ordering of MetricHeaders matches the metrics present in rows.

rows: Vec<Row>

Rows of dimension value combinations and metric values in the report.

totals: Vec<Row>

If requested, the totaled values of metrics.

maximums: Vec<Row>

If requested, the maximum values of metrics.

minimums: Vec<Row>

If requested, the minimum values of metrics.

row_count: i32

The total number of rows in the query result, regardless of the number of rows returned in the response. For example if a query returns 175 rows and includes limit = 50 in the API request, the response will contain row_count = 175 but only 50 rows.

To learn more about this pagination parameter, see Pagination.

metadata: Option<ResponseMetaData>

Metadata for the report.

property_quota: Option<PropertyQuota>

This Analytics Property’s quota state including this request.

Trait Implementations

impl Clone for RunReportResponse[src]

impl Debug for RunReportResponse[src]

impl Default for RunReportResponse[src]

impl Message for RunReportResponse[src]

impl PartialEq<RunReportResponse> for RunReportResponse[src]

impl StructuralPartialEq for RunReportResponse[src]

Auto Trait Implementations

impl RefUnwindSafe for RunReportResponse

impl Send for RunReportResponse

impl Sync for RunReportResponse

impl Unpin for RunReportResponse

impl UnwindSafe for RunReportResponse

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]