ical/component/vlocation.rs
1//! # VLOCATION
2//!
3//! The `VLOCATION` component: a location of the component holding it (RFC 9073
4//! 7.2).
5
6use crate::component::{IcalComponentKind, spec::IcalComponentSpec};
7
8/// The `VLOCATION` component marker.
9pub struct VLOCATION;
10
11impl IcalComponentSpec for VLOCATION {
12 const KIND: IcalComponentKind = IcalComponentKind::VLocation;
13}