pub enum TokenType {
Show 16 variants
XMLDecl,
Comment,
PI,
DoctypeDecl,
ElementDecl,
AttlistDecl,
EntityDecl,
NotationDecl,
DoctypeEnd,
ElementStart,
ElementClose,
Attribute,
CDSect,
Whitespace,
CharData,
Unknown,
}Expand description
List of token types.
For internal use and errors.
Variants
XMLDecl
Comment
PI
DoctypeDecl
ElementDecl
AttlistDecl
EntityDecl
NotationDecl
DoctypeEnd
ElementStart
ElementClose
Attribute
CDSect
Whitespace
CharData
Unknown
Trait Implementations
impl Copy for TokenType
impl StructuralPartialEq for TokenType
Auto Trait Implementations
impl RefUnwindSafe for TokenType
impl Send for TokenType
impl Sync for TokenType
impl Unpin for TokenType
impl UnwindSafe for TokenType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more