//! # Recurrence-rule value
//!
//! The decoded recurrence-rule value kind.
//!
//! Backs `RRULE` and the rule form of `EXRULE` (RFC 5545 3.3.10), including
//! the `RSCALE` and `SKIP` extensions (RFC 7529): a semicolon-separated list
//! of `part=value` rule components such as `FREQ=YEARLY;BYMONTH=1`.
//!
//! The value is kept as its raw text, which is what round-tripping needs;
//! [`IcalRecurRule::parse`](crate::recur::IcalRecurRule::parse) decodes it
//! into typed parts, and [`crate::recur`] expands what it denotes.
use ;
/// A decoded recurrence-rule value, kept as its raw text.
;