[][src]Struct google_calendar3::EventCreator

pub struct EventCreator {
    pub self_: Option<bool>,
    pub display_name: Option<String>,
    pub email: Option<String>,
    pub id: Option<String>,
}

The creator of the event. Read-only.

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

Fields

self_: Option<bool>

Whether the creator corresponds to the calendar on which this copy of the event appears. Read-only. The default is False.

display_name: Option<String>

The creator's name, if available.

email: Option<String>

The creator's email address, if available.

id: Option<String>

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

Trait Implementations

impl Part for EventCreator[src]

impl NestedType for EventCreator[src]

impl Clone for EventCreator[src]

impl Default for EventCreator[src]

impl Debug for EventCreator[src]

impl Serialize for EventCreator[src]

impl<'de> Deserialize<'de> for EventCreator[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]