[][src]Struct ics::parameters::PartStat

pub struct PartStat<'a> { /* fields omitted */ }

Implementations

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

pub fn new<S>(value: S) -> Self where
    S: Into<Cow<'a, str>>, 
[src]

Creates a new PARTSTAT Parameter with the given value.

pub const NEEDS_ACTION: Self[src]

PartStat for an Event, To-Do or Journal that needs action (Default Value)

Parameter Value: NEEDS-ACTION

pub const ACCEPTED: Self[src]

PartStat for an accepted Event, To-Do or Journal

Parameter Value: ACCEPTED

pub const DECLINED: Self[src]

PartStat for a declined Event, To-Do or Journal

Parameter Value: DECLINED

pub const TENTATIVE: Self[src]

PartStat for a tentatively accepted Event or To-Do

Parameter Value: TENTATIVE

pub const DELEGATED: Self[src]

PartStat for a delegated Event or To-Do

Parameter Value: DELEGATED

pub const COMPLETED: Self[src]

PartStat for a completed To-Do

Parameter Value: COMPLETED

pub const IN_PROCESS: Self[src]

PartStat for an in-process To-Do

Parameter Value: IN-PROCESS

Trait Implementations

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

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

impl<'a> Default for PartStat<'a>[src]

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

impl<'a> From<PartStat<'a>> for Parameter<'a>[src]

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

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

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

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

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for PartStat<'a>

impl<'a> Send for PartStat<'a>

impl<'a> Sync for PartStat<'a>

impl<'a> Unpin for PartStat<'a>

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