pub enum Node<'a> {
}
Variants§
Lit(Lit<'a>)
Comment(Comment<'a>)
Expr(Ws, Expr<'a>)
Call(Call<'a>)
Let(Let<'a>)
If(If<'a>)
Match(Match<'a>)
Loop(Box<Loop<'a>>)
Extends(Extends<'a>)
BlockDef(BlockDef<'a>)
Include(Include<'a>)
Import(Import<'a>)
Macro(Macro<'a>)
Raw(Raw<'a>)
Break(Ws)
Continue(Ws)
Trait Implementations§
impl<'a> StructuralPartialEq for Node<'a>
Auto Trait Implementations§
impl<'a> Freeze for Node<'a>
impl<'a> RefUnwindSafe for Node<'a>
impl<'a> Send for Node<'a>
impl<'a> Sync for Node<'a>
impl<'a> Unpin for Node<'a>
impl<'a> UnwindSafe for Node<'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