Struct google_calendar3::api::CalendarNotification[][src]

pub struct CalendarNotification {
    pub method: Option<String>,
    pub type_: Option<String>,
}

There is no detailed description.

This type is not used in any activity, and only used as part of another schema.

Fields

method: Option<String>

The method used to deliver the notification. The possible value is:

  • “email” - Notifications are sent via email.
    Required when adding a notification.
type_: Option<String>

The type of notification. Possible values are:

  • “eventCreation” - Notification sent when a new event is put on the calendar.
  • “eventChange” - Notification sent when an event is changed.
  • “eventCancellation” - Notification sent when an event is cancelled.
  • “eventResponse” - Notification sent when an attendee responds to the event invitation.
  • “agenda” - An agenda with the events of the day (sent out in the morning).
    Required when adding a notification.

Trait Implementations

impl Clone for CalendarNotification[src]

impl Debug for CalendarNotification[src]

impl Default for CalendarNotification[src]

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

impl Part for CalendarNotification[src]

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