[][src]Struct icalendar::Property

pub struct Property { /* fields omitted */ }

key-value pairs inside of Components

Methods

impl Property[src]

pub fn new(key: &str, val: &str) -> Self[src]

Guess what this does :D

pub fn key(&self) -> String[src]

Clones the key field.

pub fn append_parameter<I: Into<Parameter>>(
    &mut self,
    into_parameter: I
) -> &mut Self
[src]

Appends a new parameter.

pub fn add_parameter(&mut self, key: &str, val: &str) -> &mut Self[src]

Creates and appends a parameter.

pub fn done(&mut self) -> Self[src]

End of Builder Pattern.

pub fn fmt_write<W: Write>(&self, out: &mut W) -> Result<(), Error>[src]

Writes this Property to out

Trait Implementations

impl Debug for Property[src]

impl Into<Property> for Class[src]

impl Into<Property> for EventStatus[src]

impl Into<Property> for TodoStatus[src]

Auto Trait Implementations

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, 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<V, T> VZip<V> for T where
    V: MultiLane<T>,