#[non_exhaustive]pub struct QueryTimeSeriesResponse {
    pub time_series_descriptor: Option<TimeSeriesDescriptor>,
    pub time_series_data: Vec<TimeSeriesData>,
    pub next_page_token: String,
    pub partial_errors: Vec<Status>,
}Expand description
The QueryTimeSeries response. For information about the status of
Monitoring Query Language (MQL), see the MQL deprecation
notice.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.time_series_descriptor: Option<TimeSeriesDescriptor>The descriptor for the time series data.
time_series_data: Vec<TimeSeriesData>The time series data.
next_page_token: StringIf there are more results than have been returned, then this field is set
to a non-empty value.  To see the additional results, use that value as
page_token in the next call to this method.
partial_errors: Vec<Status>Query execution errors that may have caused the time series data returned to be incomplete. The available data will be available in the response.
Implementations§
Source§impl QueryTimeSeriesResponse
 
impl QueryTimeSeriesResponse
Sourcepub fn set_time_series_descriptor<T: Into<Option<TimeSeriesDescriptor>>>(
    self,
    v: T,
) -> Self
 
pub fn set_time_series_descriptor<T: Into<Option<TimeSeriesDescriptor>>>( self, v: T, ) -> Self
Sets the value of time_series_descriptor.
Sourcepub fn set_next_page_token<T: Into<String>>(self, v: T) -> Self
 
pub fn set_next_page_token<T: Into<String>>(self, v: T) -> Self
Sets the value of next_page_token.
Sourcepub fn set_time_series_data<T, V>(self, v: T) -> Self
 
pub fn set_time_series_data<T, V>(self, v: T) -> Self
Sets the value of time_series_data.
Sourcepub fn set_partial_errors<T, V>(self, v: T) -> Self
 
pub fn set_partial_errors<T, V>(self, v: T) -> Self
Sets the value of partial_errors.
Trait Implementations§
Source§impl Clone for QueryTimeSeriesResponse
 
impl Clone for QueryTimeSeriesResponse
Source§fn clone(&self) -> QueryTimeSeriesResponse
 
fn clone(&self) -> QueryTimeSeriesResponse
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl Debug for QueryTimeSeriesResponse
 
impl Debug for QueryTimeSeriesResponse
Source§impl Default for QueryTimeSeriesResponse
 
impl Default for QueryTimeSeriesResponse
Source§fn default() -> QueryTimeSeriesResponse
 
fn default() -> QueryTimeSeriesResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for QueryTimeSeriesResponsewhere
    QueryTimeSeriesResponse: Default,
 
impl<'de> Deserialize<'de> for QueryTimeSeriesResponsewhere
    QueryTimeSeriesResponse: Default,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Message for QueryTimeSeriesResponse
 
impl Message for QueryTimeSeriesResponse
Source§impl PartialEq for QueryTimeSeriesResponse
 
impl PartialEq for QueryTimeSeriesResponse
Source§impl Serialize for QueryTimeSeriesResponse
 
impl Serialize for QueryTimeSeriesResponse
impl StructuralPartialEq for QueryTimeSeriesResponse
Auto Trait Implementations§
impl Freeze for QueryTimeSeriesResponse
impl RefUnwindSafe for QueryTimeSeriesResponse
impl Send for QueryTimeSeriesResponse
impl Sync for QueryTimeSeriesResponse
impl Unpin for QueryTimeSeriesResponse
impl UnwindSafe for QueryTimeSeriesResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more