From 908033c6260dc9d9518e2641aca4f5ead49f6d61 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Fri, 20 Dec 2019 11:22:47 +0100 Subject: Add description of IcalProperty type Signed-off-by: Matthias Beyer --- src/property.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/property.rs b/src/property.rs index 55b5914..63e7540 100644 --- a/src/property.rs +++ b/src/property.rs @@ -5,6 +5,9 @@ use std::fmt; use super::component::IcalComponent; use crate::ical; +/// A property in the ical data +/// +/// This type represents a single property (name + value). pub struct IcalProperty<'a> { pub ptr: *mut ical::icalproperty, _parent: &'a dyn IcalComponent, -- cgit v1.2.3