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
//! # VRESOURCE
//!
//! The `VRESOURCE` component: a resource the component holding it needs (RFC
//! 9073 7.3).

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

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

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