summaryrefslogtreecommitdiffstats
path: root/src/property.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/property.rs')
-rw-r--r--src/property.rs3
1 files changed, 3 insertions, 0 deletions
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,