[][src]Struct ics::properties::Conference

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

CONFERENCE Property

Newer properties that have a different value type than TEXT have to include the VALUE parameter. This property already contains VALUE: URI . Do not add this parameter manually.

Implementations

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

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

Creates a new CONFERENCE 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 Conference<'a>[src]

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

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

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

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

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

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

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

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for Conference<'a>

impl<'a> Send for Conference<'a>

impl<'a> Sync for Conference<'a>

impl<'a> Unpin for Conference<'a>

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