pub struct IcalPropPath<'a> {
pub component: IcalComponentPath<'a>,
pub name: Cow<'a, str>,
pub index: usize,
}Available on crate feature
parser only.Expand description
One property’s address: the component holding it, its name, and which of that component’s same-named properties it is.
Fields§
§component: IcalComponentPath<'a>The component the property belongs to.
name: Cow<'a, str>The property name as written.
index: usizeThe position among the component’s properties of that name.
Trait Implementations§
Source§impl<'a> Clone for IcalPropPath<'a>
impl<'a> Clone for IcalPropPath<'a>
Source§fn clone(&self) -> IcalPropPath<'a>
fn clone(&self) -> IcalPropPath<'a>
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<'a> Debug for IcalPropPath<'a>
impl<'a> Debug for IcalPropPath<'a>
impl<'a> Eq for IcalPropPath<'a>
Source§impl<'a> PartialEq for IcalPropPath<'a>
impl<'a> PartialEq for IcalPropPath<'a>
impl<'a> StructuralPartialEq for IcalPropPath<'a>
Auto Trait Implementations§
impl<'a> Freeze for IcalPropPath<'a>
impl<'a> RefUnwindSafe for IcalPropPath<'a>
impl<'a> Send for IcalPropPath<'a>
impl<'a> Sync for IcalPropPath<'a>
impl<'a> Unpin for IcalPropPath<'a>
impl<'a> UnsafeUnpin for IcalPropPath<'a>
impl<'a> UnwindSafe for IcalPropPath<'a>
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