[][src]Struct ics::Alarm

pub struct Alarm<'a>(_);

The VALARM calendar sub-component of VEVENT and VTODO.

An Alarm component is a grouping of component properties that is a reminder or alarm for an Event or a ToDo. For example, it may be used to define a reminder for a pending event or an overdue to-do. (see RFC5545 3.6.6. Alarm Component)

Implementations

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

pub fn new(action: Action<'a>, trigger: Trigger<'a>) -> Self[src]

Creates a new VALARM calendar component. The ACTION and TRIGGER properties are required.

pub fn audio(trigger: Trigger<'a>) -> Self[src]

Creates a new audio alarm. The TRIGGER property is required.

pub fn display(trigger: Trigger<'a>, description: Description<'a>) -> Self[src]

Creates a new display alarm. The TRIGGER and DESCRIPTION properties are required.

pub fn email(
    trigger: Trigger<'a>,
    description: Description<'a>,
    summary: Summary<'a>
) -> Self
[src]

Creates a new email alarm. The TRIGGER, DESCRIPTION and SUMMARY properties are required.

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

Adds a property to the alarm. The RFC5545 specifies which property can be added depending on the kind of alarm.

Trait Implementations

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

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

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

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

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

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

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

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

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

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for Alarm<'a>

impl<'a> Send for Alarm<'a>

impl<'a> Sync for Alarm<'a>

impl<'a> Unpin for Alarm<'a>

impl<'a> UnwindSafe for Alarm<'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.