Skip to main content

ical/tree/component/
vresource.rs

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