Struct js::syntax::ast::token::Token [−][src]
Represents a token
Fields
data: TokenData
The token Data
pos: Position
Token position from original source code
Methods
impl Token
[src]
impl Token
pub fn new(data: TokenData, line_number: u64, column_number: u64) -> Token
[src]
pub fn new(data: TokenData, line_number: u64, column_number: u64) -> Token
Create a new detailed token from the token data, line number and column number
Trait Implementations
impl Clone for Token
[src]
impl Clone for Token
fn clone(&self) -> Token
[src]
fn clone(&self) -> Token
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0
[src]Performs copy-assignment from source
. Read more
impl PartialEq for Token
[src]
impl PartialEq for Token
fn eq(&self, other: &Token) -> bool
[src]
fn eq(&self, other: &Token) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Token) -> bool
[src]
fn ne(&self, other: &Token) -> bool
This method tests for !=
.
impl Debug for Token
[src]
impl Debug for Token
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Display for Token
[src]
impl Display for Token