ical-rs 0.5.1

iCalendar parser, validator, editor, merger and builder library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! # VLOCATION
//!
//! The `VLOCATION` component: a location of the component holding it (RFC 9073
//! 7.2).

use crate::component::{IcalComponentKind, spec::IcalComponentSpec};

/// The `VLOCATION` component marker.
pub struct VLOCATION;

impl IcalComponentSpec for VLOCATION {
    const KIND: IcalComponentKind = IcalComponentKind::VLocation;
}