[][src]Struct google_calendar3::EventDateTime

pub struct EventDateTime {
    pub date: Option<String>,
    pub time_zone: Option<String>,
    pub date_time: Option<String>,
}

There is no detailed description.

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

Fields

date: Option<String>

The date, in the format "yyyy-mm-dd", if this is an all-day event.

time_zone: Option<String>

The time zone in which the time is specified. (Formatted as an IANA Time Zone Database name, e.g. "Europe/Zurich".) For recurring events this field is required and specifies the time zone in which the recurrence is expanded. For single events this field is optional and indicates a custom time zone for the event start/end.

date_time: Option<String>

The time, as a combined date-time value (formatted according to RFC3339). A time zone offset is required unless a time zone is explicitly specified in timeZone.

Trait Implementations

impl Clone for EventDateTime[src]

impl Debug for EventDateTime[src]

impl Default for EventDateTime[src]

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

impl Part for EventDateTime[src]

impl Serialize for EventDateTime[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, 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<T> Typeable for T where
    T: Any