Skip to main content

ical/tree/component/
vlocation.rs

1//! # VLOCATION component lens
2//!
3//! The `VLOCATION` component lens.
4
5use crate::{
6    component::IcalComponentKind,
7    tree::component::{IcalComponentLens, IcalComponentSpec},
8};
9
10/// The `VLOCATION` component lens.
11#[allow(non_camel_case_types)]
12pub struct VLOCATION;
13
14impl IcalComponentLens for VLOCATION {}
15
16impl IcalComponentSpec for VLOCATION {
17    const KIND: IcalComponentKind = IcalComponentKind::VLocation;
18}