[][src]Struct ics::Daylight

pub struct Daylight<'a>(_);

The DAYLIGHT calendar sub-component of VTIMEZONE

A [Daylight] component is a sub-component of the [TimeZone`] component which describes rules for daylight saving time, also known as advanced time, summer time, or legal time in certain countries.

Implementations

impl<'a> Daylight<'a>[src]

pub fn new<S, T, F>(dtstart: S, tz_offset_from: F, tz_offset_to: T) -> Self where
    S: Into<Cow<'a, str>>,
    F: Into<Cow<'a, str>>,
    T: Into<Cow<'a, str>>, 
[src]

Creates a new DAYLIGHT sub-component. The properties DTSTART, TZOFFSETFROM and TZOFFSETTO are required.

pub fn push<P>(&mut self, property: P) where
    P: Into<Property<'a>>, 
[src]

Adds a property to the zone time. The RFC5545 specifies which properties can be added to a zone time.

Trait Implementations

impl<'a> Clone for Daylight<'a>[src]

impl<'a> Debug for Daylight<'a>[src]

impl<'a> Display for Daylight<'a>[src]

impl<'a> Eq for Daylight<'a>[src]

impl<'a> From<Daylight<'a>> for Component<'a>[src]

impl<'a> Hash for Daylight<'a>[src]

impl<'a> Ord for Daylight<'a>[src]

impl<'a> PartialEq<Daylight<'a>> for Daylight<'a>[src]

impl<'a> PartialOrd<Daylight<'a>> for Daylight<'a>[src]

impl<'a> StructuralEq for Daylight<'a>[src]

impl<'a> StructuralPartialEq for Daylight<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Daylight<'a>

impl<'a> Send for Daylight<'a>

impl<'a> Sync for Daylight<'a>

impl<'a> Unpin for Daylight<'a>

impl<'a> UnwindSafe for Daylight<'a>

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> 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> ToString for T where
    T: Display + ?Sized
[src]

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.