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
//! # VRESOURCE component lens
//!
//! The `VRESOURCE` component lens.

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

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

impl IcalComponentLens for VRESOURCE {}

impl IcalComponentSpec for VRESOURCE {
    const KIND: IcalComponentKind = IcalComponentKind::VResource;
}