Skip to main content

ical/tree/param/
mod.rs

1//! # Parameters (syntax side)
2//!
3//! The per-parameter lens contract ([`IcalParamLens`](lens::IcalParamLens))
4//! and one module per iCalendar parameter, tying a wire name to its decoded
5//! shape.
6//!
7//! The markers are the type-level keys for
8//! [`IcalLine::param`](crate::tree::line::IcalLine::param). The raw
9//! [`IcalParamNode`](node::IcalParamNode) they read and write is defined
10//! alongside.
11
12pub mod altrep;
13pub mod charset;
14pub mod cn;
15pub mod cutype;
16pub mod delegated_from;
17pub mod delegated_to;
18pub mod derived;
19pub mod dir;
20pub mod display;
21pub mod email;
22pub mod encoding;
23pub mod fbtype;
24pub mod feature;
25pub mod fmttype;
26pub mod gap;
27pub mod label;
28pub mod language;
29pub mod linkrel;
30pub mod member;
31pub mod order;
32pub mod partstat;
33pub mod range;
34pub mod related;
35pub mod reltype;
36pub mod role;
37pub mod rsvp;
38pub mod schedule_agent;
39pub mod schedule_force_send;
40pub mod schedule_status;
41pub mod schema;
42pub mod sent_by;
43pub mod tzid;
44pub mod value;
45
46pub mod lens;
47pub mod node;