ical-rs 0.2.0

iCalendar parser, validator, editor and builder library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! # VLOCATION component lens
//!
//! The `VLOCATION` component lens.

use crate::{
    component::IcalComponentKind,
    tree::component::{lens::IcalComponentLens, spec::IcalComponentSpec},
};

/// The `VLOCATION` component lens.
#[allow(non_camel_case_types)]
pub struct VLOCATION;

impl IcalComponentLens for VLOCATION {}

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