pub enum Lex {
Tag {
element: HtmlElement,
attributes: Vec<Attribute>,
},
DocType,
SanitizedVar(String),
Var(String),
If(String),
ElseIf(String),
Else,
For {
var: String,
iter: String,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Lex
impl RefUnwindSafe for Lex
impl !Send for Lex
impl !Sync for Lex
impl Unpin for Lex
impl UnwindSafe for Lex
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