//! # Period value
//!
//! The decoded period-of-time value kind.
//!
//! Backs `FREEBUSY` and the period form of `RDATE` (RFC 5545 3.3.9): a start
//! date-time and either an end date-time (`start/end`) or a duration
//! (`start/duration`), the two components separated by a solidus. The value is
//! kept as its raw text; the crate does not split or decode the two
//! components. Pure data, no escaping; the owning property's wire name lives on
//! [`crate::prop::IcalProp::name`].
use ;
/// A decoded period value (`start/end` or `start/duration`), kept as its raw
/// text.
;