Struct google_calendar3::api::EventAttendee[][src]

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

There is no detailed description.

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

Fields

additional_guests: Option<i32>

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

comment: Option<String>

The attendee's response comment. Optional.

display_name: Option<String>

The attendee's name, if available. Optional.

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

optional: Option<bool>

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

organizer: Option<bool>

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

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.

response_status: Option<String>

The attendee's response status. Possible values are:

self_: Option<bool>

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

Trait Implementations

impl Clone for EventAttendee[src]

impl Debug for EventAttendee[src]

impl Default for EventAttendee[src]

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

impl Part for EventAttendee[src]

impl Serialize for EventAttendee[src]

Auto Trait Implementations

impl RefUnwindSafe for EventAttendee[src]

impl Send for EventAttendee[src]

impl Sync for EventAttendee[src]

impl Unpin for EventAttendee[src]

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