[][src]Struct google_calendar3::Events

pub struct Events {
    pub next_page_token: Option<String>,
    pub kind: Option<String>,
    pub default_reminders: Option<Vec<EventReminder>>,
    pub description: Option<String>,
    pub items: Option<Vec<Event>>,
    pub updated: Option<String>,
    pub summary: Option<String>,
    pub etag: Option<String>,
    pub next_sync_token: Option<String>,
    pub time_zone: Option<String>,
    pub access_role: 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

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.

kind: Option<String>

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

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.

items: Option<Vec<Event>>

List of events on the calendar.

updated: Option<String>

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

summary: Option<String>

Title of the calendar. Read-only.

etag: Option<String>

ETag of the collection.

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.

time_zone: Option<String>

The time zone of the calendar. Read-only.

access_role: Option<String>

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

  • "none" - The user has no access.
  • "freeBusyReader" - The user has read access to free/busy information.
  • "reader" - The user has read access to the calendar. Private events will appear to users with reader access, but event details will be hidden.
  • "writer" - The user has read and write access to the calendar. Private events will appear to users with writer access, and event details will be visible.
  • "owner" - The user has ownership of the calendar. This role has all of the permissions of the writer role with the additional ability to see and manipulate ACLs.

Trait Implementations

impl ResponseResult for Events[src]

impl Default for Events[src]

impl Clone for Events[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Events[src]

impl Serialize for Events[src]

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

Auto Trait Implementations

impl Send for Events

impl Unpin for Events

impl Sync for Events

impl UnwindSafe for Events

impl RefUnwindSafe for Events

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]