Struct google_calendar3::EventDateTime [] [src]

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

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

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.

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 Debug for EventDateTime
[src]

Formats the value using the given formatter.

impl Clone for EventDateTime
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for EventDateTime
[src]

Returns the "default value" for a type. Read more

impl Part for EventDateTime
[src]