Struct google_monitoring3::api::QueryTimeSeriesRequest[][src]

pub struct QueryTimeSeriesRequest {
    pub page_size: Option<i32>,
    pub page_token: Option<String>,
    pub query: Option<String>,
}

The QueryTimeSeries request.

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).

Fields

page_size: Option<i32>

A positive number that is the maximum number of time_series_data to return.

page_token: Option<String>

If this field is not empty then it must contain the nextPageToken value returned by a previous call to this method. Using this field causes the method to return additional results from the previous method call.

query: Option<String>

Required. The query in the Monitoring Query Language (https://cloud.google.com/monitoring/mql/reference) format. The default time zone is in UTC.

Trait Implementations

impl Clone for QueryTimeSeriesRequest[src]

impl Debug for QueryTimeSeriesRequest[src]

impl Default for QueryTimeSeriesRequest[src]

impl<'de> Deserialize<'de> for QueryTimeSeriesRequest[src]

impl RequestValue for QueryTimeSeriesRequest[src]

impl Serialize for QueryTimeSeriesRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for QueryTimeSeriesRequest[src]

impl Send for QueryTimeSeriesRequest[src]

impl Sync for QueryTimeSeriesRequest[src]

impl Unpin for QueryTimeSeriesRequest[src]

impl UnwindSafe for QueryTimeSeriesRequest[src]

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<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.