[][src]Struct ics::Alarm

pub struct Alarm<'a>(_);

The VALARM calendar component, a sub-component for VEVENT and VTODO.

An Alarm component is a grouping of component properties that is a reminder or alarm for an event or a to-do. 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)

Methods

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> PartialOrd<Alarm<'a>> for Alarm<'a>[src]

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

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

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

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

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

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

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

Performs copy-assignment from source. Read more

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

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

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

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

Auto Trait Implementations

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

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

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

impl<'a> UnwindSafe for Alarm<'a>

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

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

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

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]