pub struct RawProperty {
pub name: String,
pub params: Vec<(String, String)>,
pub value: String,
}Expand description
Single iCalendar property with its value + parameters.
Fields§
§name: StringProperty name (e.g. DTSTART, SUMMARY, ATTENDEE).
params: Vec<(String, String)>Parameter list (e.g. TZID=America/New_York).
value: StringProperty value string (un-unfolded).
Trait Implementations§
Source§impl Clone for RawProperty
impl Clone for RawProperty
Source§fn clone(&self) -> RawProperty
fn clone(&self) -> RawProperty
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RawProperty
impl Debug for RawProperty
Source§impl PartialEq for RawProperty
impl PartialEq for RawProperty
Source§fn eq(&self, other: &RawProperty) -> bool
fn eq(&self, other: &RawProperty) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RawProperty
impl Serialize for RawProperty
impl Eq for RawProperty
impl StructuralPartialEq for RawProperty
Auto Trait Implementations§
impl Freeze for RawProperty
impl RefUnwindSafe for RawProperty
impl Send for RawProperty
impl Sync for RawProperty
impl Unpin for RawProperty
impl UnsafeUnpin for RawProperty
impl UnwindSafe for RawProperty
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more