[][src]Struct ics::properties::Summary

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

SUMMARY Property

Implementations

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

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

Creates a new SUMMARY 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 Summary<'a>[src]

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

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

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

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

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

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

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

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for Summary<'a>

impl<'a> Send for Summary<'a>

impl<'a> Sync for Summary<'a>

impl<'a> Unpin for Summary<'a>

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