Struct gsuite_api::CalendarEvent[][src]

pub struct CalendarEvent {
    pub kind: String,
    pub etag: String,
    pub id: String,
    pub status: String,
    pub html_link: String,
    pub created: DateTime<Utc>,
    pub updated: DateTime<Utc>,
    pub summary: String,
    pub description: String,
    pub location: String,
    pub recurring_event_id: String,
    pub transparency: String,
    pub visibility: String,
    pub sequence: i64,
    pub attendees: Vec<Attendee>,
    pub start: Date,
    pub end: Date,
    pub attachments: Vec<Attachment>,
}

A calendar event. FROM: https://developers.google.com/calendar/v3/reference/events#resource

Fields

kind: String

Kind of resource this is.

etag: String

ETag of the resource.

id: Stringstatus: Stringhtml_link: Stringcreated: DateTime<Utc>updated: DateTime<Utc>summary: Stringdescription: Stringlocation: Stringrecurring_event_id: Stringtransparency: Stringvisibility: Stringsequence: i64attendees: Vec<Attendee>start: Dateend: Dateattachments: Vec<Attachment>

Trait Implementations

impl Clone for CalendarEvent[src]

impl Debug for CalendarEvent[src]

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

impl Serialize for CalendarEvent[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>,