pub enum ParsedNode<'l> {
Redirect(&'l str),
Literal {
literal: &'l str,
index: usize,
},
Argument {
name: &'l str,
argument: Argument<'l>,
index: usize,
len: usize,
},
}
Variants§
Trait Implementations§
Source§impl<'l> Clone for ParsedNode<'l>
impl<'l> Clone for ParsedNode<'l>
Source§fn clone(&self) -> ParsedNode<'l>
fn clone(&self) -> ParsedNode<'l>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'l> Debug for ParsedNode<'l>
impl<'l> Debug for ParsedNode<'l>
Source§impl<'l> PartialEq for ParsedNode<'l>
impl<'l> PartialEq for ParsedNode<'l>
impl<'l> StructuralPartialEq for ParsedNode<'l>
Auto Trait Implementations§
impl<'l> Freeze for ParsedNode<'l>
impl<'l> RefUnwindSafe for ParsedNode<'l>
impl<'l> Send for ParsedNode<'l>
impl<'l> Sync for ParsedNode<'l>
impl<'l> Unpin for ParsedNode<'l>
impl<'l> UnwindSafe for ParsedNode<'l>
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