contack 0.9.2

A simple and easy contact library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[test]
fn format_name() {
    let name = contack::Name {
        given: vec!["John".to_string()],
        family: vec!["Doe".to_string()],
        prefixes: vec!["Doctor".to_string(), "Mx".to_string()],
        ..Default::default()
    };

    assert_eq!(name.to_string(), "Doctor Mx John Doe")
}