Struct google_calendar3::api::Events[][src]

pub struct Events {
    pub access_role: Option<String>,
    pub default_reminders: Option<Vec<EventReminder>>,
    pub description: Option<String>,
    pub etag: Option<String>,
    pub items: Option<Vec<Event>>,
    pub kind: Option<String>,
    pub next_page_token: Option<String>,
    pub next_sync_token: Option<String>,
    pub summary: Option<String>,
    pub time_zone: Option<String>,
    pub updated: Option<String>,
}

There is no detailed description.

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

access_role: Option<String>

The user's access role for this calendar. Read-only. Possible values are:

default_reminders: Option<Vec<EventReminder>>

The default reminders on the calendar for the authenticated user. These reminders apply to all events on this calendar that do not explicitly override them (i.e. do not have reminders.useDefault set to True).

description: Option<String>

Description of the calendar. Read-only.

etag: Option<String>

ETag of the collection.

items: Option<Vec<Event>>

List of events on the calendar.

kind: Option<String>

Type of the collection ("calendar#events").

next_page_token: Option<String>

Token used to access the next page of this result. Omitted if no further results are available, in which case nextSyncToken is provided.

next_sync_token: Option<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.

summary: Option<String>

Title of the calendar. Read-only.

time_zone: Option<String>

The time zone of the calendar. Read-only.

updated: Option<String>

Last modification time of the calendar (as a RFC3339 timestamp). Read-only.

Trait Implementations

impl Clone for Events[src]

impl Debug for Events[src]

impl Default for Events[src]

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

impl ResponseResult for Events[src]

impl Serialize for Events[src]

Auto Trait Implementations

impl RefUnwindSafe for Events[src]

impl Send for Events[src]

impl Sync for Events[src]

impl Unpin for Events[src]

impl UnwindSafe for Events[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.