pub struct IcalComponentStep<'a> {
pub name: Cow<'a, str>,
pub key: Cow<'a, str>,
}Available on crate feature
parser only.Expand description
One step of a component path: a name and the identity that tells it from its same-named siblings.
Fields§
§name: Cow<'a, str>The component name, uppercase.
key: Cow<'a, str>The UID, with the RECURRENCE-ID after a solidus when the component
overrides one instance; the position among same-named siblings when the
component carries no UID.
Trait Implementations§
Source§impl<'a> Clone for IcalComponentStep<'a>
impl<'a> Clone for IcalComponentStep<'a>
Source§fn clone(&self) -> IcalComponentStep<'a>
fn clone(&self) -> IcalComponentStep<'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 IcalComponentStep<'a>
impl<'a> Debug for IcalComponentStep<'a>
impl<'a> Eq for IcalComponentStep<'a>
Source§impl<'a> PartialEq for IcalComponentStep<'a>
impl<'a> PartialEq for IcalComponentStep<'a>
impl<'a> StructuralPartialEq for IcalComponentStep<'a>
Auto Trait Implementations§
impl<'a> Freeze for IcalComponentStep<'a>
impl<'a> RefUnwindSafe for IcalComponentStep<'a>
impl<'a> Send for IcalComponentStep<'a>
impl<'a> Sync for IcalComponentStep<'a>
impl<'a> Unpin for IcalComponentStep<'a>
impl<'a> UnsafeUnpin for IcalComponentStep<'a>
impl<'a> UnwindSafe for IcalComponentStep<'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