[][src]Struct web_ical::Events

pub struct Events {
    pub dtsart: DateTime<Utc>,
    pub dtend: DateTime<Utc>,
    pub dtstamp: DateTime<Utc>,
    pub uid: String,
    pub created: DateTime<Utc>,
    pub description: String,
    pub last_modified: DateTime<Utc>,
    pub location: String,
    pub sequence: u32,
    pub status: String,
    pub summary: String,
    pub transp: String,
}

store all events from iCalendar.

Fields

dtsart: DateTime<Utc>dtend: DateTime<Utc>dtstamp: DateTime<Utc>uid: Stringcreated: DateTime<Utc>description: Stringlast_modified: DateTime<Utc>location: Stringsequence: u32status: Stringsummary: Stringtransp: String

Methods

impl Events[src]

pub fn is_all_day(&self) -> bool[src]

Check if the events is all day.

pub fn empty() -> Events[src]

Trait Implementations

impl Clone for Events[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Unpin for Events

impl Sync for Events

impl Send for Events

impl RefUnwindSafe for Events

impl UnwindSafe for Events

Blanket Implementations

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.

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]