pub enum Token {
Ident(String),
Symbol(char),
IntLit(u64),
FloatLit(f64),
JsonNumber(JsonNumberLit),
StrLit(StrLit),
}
Variants
Ident(String)
Symbol(char)
IntLit(u64)
FloatLit(f64)
JsonNumber(JsonNumberLit)
StrLit(StrLit)
Implementations
sourceimpl Token
impl Token
pub fn to_num_lit(&self) -> LexerResult<NumLit>
Trait Implementations
impl StructuralPartialEq for Token
Auto Trait Implementations
impl RefUnwindSafe for Token
impl Send for Token
impl Sync for Token
impl Unpin for Token
impl UnwindSafe for Token
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