sp_vcard 0.2.0

Simple vCard library will help you generate vCard
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub trait VCardProperty {
    fn to_content(&self) -> String;
}

pub trait VCardValue {
    /// Format vCard value
    fn format_value(&self) -> String;
}

pub trait VCardParam {
    /// Format vCard parameter
    fn format_param(&self) -> String;
}