//! # N value
//!
//! The decoded `N` (structured name) value.
//!
//! `N` is one of the few genuinely structured RFC 6350 values (section 6.2.2):
//! five `;`-ordered components (family, given, additional, prefixes, suffixes),
//! each a possibly multi-valued `,`-separated list. This bespoke type names
//! those components so callers read `name.family` rather than indexing a raw
//! component vector. Pure, always-unescaped data; the splitting, ordering and
//! escaping live on the syntax side ([`crate::tree`]). The wire name lives on
//! [`crate::prop::VcardProp::name`].
use ;
/// The decoded N value: five name components, each a clean (unescaped) value
/// list.