vcard-rs 0.3.0

vCard parser, validator, editor and builder library for Rust
Documentation
//! # Parameters (syntax side)
//!
//! The per-parameter lens contract ([`VcardParamLens`](lens::VcardParamLens))
//! and one hand-written module per RFC 6350 parameter, tying a wire name to
//! its decoded shape.
//!
//! The markers are the type-level keys for
//! [`VcardLine::param`](crate::tree::line::VcardLine::param). The raw
//! [`VcardParamNode`](node::VcardParamNode) they read and write is defined
//! alongside.

pub mod altid;
pub mod calscale;
pub mod geo;
pub mod label;
pub mod language;
pub mod lens;
pub mod mediatype;
pub mod node;
pub mod pid;
pub mod pref;
pub mod sort_as;
pub mod r#type;
pub mod tz;
pub mod value;