pub struct Token {
pub kind: TokenKind,
pub len: u32,
}Expand description
Parsed token. It doesn’t contain information about data that has been parsed, only the type of the token and its size.
Fields§
§kind: TokenKind§len: u32pub struct Token {
pub kind: TokenKind,
pub len: u32,
}Parsed token. It doesn’t contain information about data that has been parsed, only the type of the token and its size.
kind: TokenKind§len: u32