pub struct ListAnalyticsResponse {
pub next_page_token: Option<String>,
pub response_metadata: Option<ResponseMetadata>,
pub analytics_summary: Option<AnalyticsSummary>,
pub analytics: Option<Vec<Analytics>>,
}Expand description
Response message for ListAnalytics.
§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).
- list analytics (response)
Fields§
§next_page_token: Option<String>A token to retrieve next page of results.
Pass this value in the ListAnalyticsRequest.page_token field in the
subsequent call to
ListAnalytics to retrieve the
next page of results.
response_metadata: Option<ResponseMetadata>Current response metadata.
analytics_summary: Option<AnalyticsSummary>Aggregated information across the response’s analytics.
analytics: Option<Vec<Analytics>>The list of analytics. Sorted in ascending order of Analytics.event_date.
Trait Implementations§
Source§impl Clone for ListAnalyticsResponse
impl Clone for ListAnalyticsResponse
Source§fn clone(&self) -> ListAnalyticsResponse
fn clone(&self) -> ListAnalyticsResponse
Returns a duplicate 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 ListAnalyticsResponse
impl Debug for ListAnalyticsResponse
Source§impl Default for ListAnalyticsResponse
impl Default for ListAnalyticsResponse
Source§fn default() -> ListAnalyticsResponse
fn default() -> ListAnalyticsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListAnalyticsResponse
impl<'de> Deserialize<'de> for ListAnalyticsResponse
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 Serialize for ListAnalyticsResponse
impl Serialize for ListAnalyticsResponse
impl ResponseResult for ListAnalyticsResponse
Auto Trait Implementations§
impl Freeze for ListAnalyticsResponse
impl RefUnwindSafe for ListAnalyticsResponse
impl Send for ListAnalyticsResponse
impl Sync for ListAnalyticsResponse
impl Unpin for ListAnalyticsResponse
impl UnwindSafe for ListAnalyticsResponse
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