pub enum CalendarDateTime {
    Floating(NaiveDateTime),
    Utc(DateTime<Utc>),
    WithTimezone {
        date_time: NaiveDateTime,
        tzid: String,
    },
}
Expand description

Representation of various forms of DATE-TIME per RFC 5545, Section 3.3.5

Conversions from chrono types are provided in form of From implementations, see documentation of individual variants.

In addition to readily implemented FORM #1 and FORM #2, the RFC also specifies FORM #3: DATE WITH LOCAL TIME AND TIME ZONE REFERENCE. This variant is not yet implemented. Adding it will require adding support for VTIMEZONE and referencing it using TZID.

Variants

Floating(NaiveDateTime)

FORM #1: DATE WITH LOCAL TIME: floating, follows current time-zone of the attendee.

Conversion from chrono::NaiveDateTime results in this variant.

Utc(DateTime<Utc>)

FORM #2: DATE WITH UTC TIME: rendered with Z suffix character.

Conversion from chrono::DateTime<Utc> results in this variant. Use date_time.with_timezone(&Utc) to convert date_time from arbitrary time zone to UTC.

WithTimezone

Fields

date_time: NaiveDateTime

The date and time in the given time zone.

tzid: String

The ID of the time zone definition in a VTIMEZONE calendar component.

FORM #3: DATE WITH LOCAL TIME AND TIME ZONE REFERENCE: refers to a time zone definition.

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Converts to this type from the input type.

Converts from time zone-aware UTC date-time to CalendarDateTime::Utc.

Converts to this type from the input type.

Converts from time zone-less date-time to CalendarDateTime::Floating.

Converts to this type from the input type.
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.