Struct gsuite_api::CalendarEvents[][src]

pub struct CalendarEvents {
    pub next_page_token: String,
    pub next_sync_token: String,
    pub kind: String,
    pub etag: String,
    pub trigger_event: String,
    pub items: Vec<CalendarEvent>,
}

A list of calendar events. FROM: https://developers.google.com/calendar/v3/reference/events/list

Fields

next_page_token: String

Token used to access next page of this result.

next_sync_token: String

Token used at a later point in time to retrieve only the entries that have changed since this result was returned. Omitted if further results are available, in which case nextPageToken is provided.

kind: String

Kind of resource this is.

etag: String

ETag of the resource.

trigger_event: String

Event that triggered this response (only used in case of Push Response)

items: Vec<CalendarEvent>

List of group objects.

Trait Implementations

impl Clone for CalendarEvents[src]

impl Debug for CalendarEvents[src]

impl Default for CalendarEvents[src]

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

impl Serialize for CalendarEvents[src]

Auto Trait Implementations

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,