pub struct IcalParamNode<'a> {
pub name: IcalLeaf<'a>,
pub values: Vec<IcalLeaf<'a>>,
pub escaper: Escaper,
}Available on crate feature
parser only.Expand description
One raw parameter: a name and its ,-separated raw values (empty when the
parameter has no = list). The syntactic peer of the decoded
IcalParam.
Fields§
§name: IcalLeaf<'a>The parameter name leaf.
values: Vec<IcalLeaf<'a>>The raw value leaves.
escaper: EscaperWhich version’s parameter encoding rules the values are written in.
Stamped by the parser once VERSION is known, as on a value node.
Implementations§
Source§impl IcalParamNode<'_>
impl IcalParamNode<'_>
Trait Implementations§
Source§impl<'a> Clone for IcalParamNode<'a>
impl<'a> Clone for IcalParamNode<'a>
Source§fn clone(&self) -> IcalParamNode<'a>
fn clone(&self) -> IcalParamNode<'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 IcalParamNode<'a>
impl<'a> Debug for IcalParamNode<'a>
Auto Trait Implementations§
impl<'a> Freeze for IcalParamNode<'a>
impl<'a> RefUnwindSafe for IcalParamNode<'a>
impl<'a> Send for IcalParamNode<'a>
impl<'a> Sync for IcalParamNode<'a>
impl<'a> Unpin for IcalParamNode<'a>
impl<'a> UnsafeUnpin for IcalParamNode<'a>
impl<'a> UnwindSafe for IcalParamNode<'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