[][src]Struct google_calendar3::EventAttendee

pub struct EventAttendee {
    pub comment: Option<String>,
    pub display_name: Option<String>,
    pub self_: Option<bool>,
    pub email: Option<String>,
    pub id: Option<String>,
    pub additional_guests: Option<i32>,
    pub resource: Option<bool>,
    pub organizer: Option<bool>,
    pub optional: Option<bool>,
    pub response_status: Option<String>,
}

There is no detailed description.

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

Fields

comment: Option<String>

The attendee's response comment. Optional.

display_name: Option<String>

The attendee's name, if available. Optional.

self_: Option<bool>

Whether this entry represents the calendar on which this copy of the event appears. Read-only. The default is False.

email: Option<String>

The attendee's email address, if available. This field must be present when adding an attendee. It must be a valid email address as per RFC5322. Required when adding an attendee.

id: Option<String>

The attendee's Profile ID, if available. It corresponds to the id field in the People collection of the Google+ API

additional_guests: Option<i32>

Number of additional guests. Optional. The default is 0.

resource: Option<bool>

Whether the attendee is a resource. Can only be set when the attendee is added to the event for the first time. Subsequent modifications are ignored. Optional. The default is False.

organizer: Option<bool>

Whether the attendee is the organizer of the event. Read-only. The default is False.

optional: Option<bool>

Whether this is an optional attendee. Optional. The default is False.

response_status: Option<String>

The attendee's response status. Possible values are:

  • "needsAction" - The attendee has not responded to the invitation.
  • "declined" - The attendee has declined the invitation.
  • "tentative" - The attendee has tentatively accepted the invitation.
  • "accepted" - The attendee has accepted the invitation.

Trait Implementations

impl Part for EventAttendee[src]

impl Clone for EventAttendee[src]

impl Default for EventAttendee[src]

impl Debug for EventAttendee[src]

impl Serialize for EventAttendee[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> 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 = !

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

impl<T> BorrowMut<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

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