vcard 0.4.13

A pure Rust implementation of vCard based on RFC 6350.
Documentation
1
2
3
4
5
6
7
8
9
10
pub use super::super::validators::uri::URI;
use super::*;

impl Value for URI {
    fn fmt(&self, f: &mut Formatter) -> Result<(), fmt::Error> {
        f.write_str(self.get_full_uri())?;

        Ok(())
    }
}