[][src]Struct ics::properties::DtStamp

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

DTSTAMP Property

Implementations

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

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

Creates a new DTSTAMP Property with the given value.

pub fn add<P>(&mut self, parameter: P) where
    P: Into<Parameter<'a>>, 
[src]

Adds a parameter to the property.

pub fn append(&mut self, parameters: Parameters<'a>)[src]

Adds several parameters at once to the property. For creating several parameters at once, consult the documentation of the parameters! macro.

Trait Implementations

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

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

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

impl<'a> From<DtStamp<'a>> for Property<'a>[src]

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

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

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

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

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for DtStamp<'a>

impl<'a> Send for DtStamp<'a>

impl<'a> Sync for DtStamp<'a>

impl<'a> Unpin for DtStamp<'a>

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