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

pub struct RunRealtimeReportResponse {
    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 property_quota: Option<PropertyQuota>,
}

The response realtime 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.

property_quota: Option<PropertyQuota>

This Analytics Property’s Realtime quota state including this request.

Trait Implementations

impl Clone for RunRealtimeReportResponse[src]

impl Debug for RunRealtimeReportResponse[src]

impl Default for RunRealtimeReportResponse[src]

impl Message for RunRealtimeReportResponse[src]

impl PartialEq<RunRealtimeReportResponse> for RunRealtimeReportResponse[src]

impl StructuralPartialEq for RunRealtimeReportResponse[src]

Auto Trait Implementations

impl RefUnwindSafe for RunRealtimeReportResponse

impl Send for RunRealtimeReportResponse

impl Sync for RunRealtimeReportResponse

impl Unpin for RunRealtimeReportResponse

impl UnwindSafe for RunRealtimeReportResponse

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]