Struct symbolic_sourcemap::TokenMatch [−][src]
pub struct TokenMatch<'a> {
pub src_line: u32,
pub src_col: u32,
pub dst_line: u32,
pub dst_col: u32,
pub src_id: u32,
pub name: Option<&'a str>,
pub src: Option<&'a str>,
pub function_name: Option<String>,
}Expand description
A matched token.
Fields
src_line: u32The line number in the original source file.
src_col: u32The column number in the original source file.
dst_line: u32The column number in the minifid source file.
dst_col: u32The column number in the minified source file.
src_id: u32The source ID of the token.
name: Option<&'a str>The token name, if present.
src: Option<&'a str>The source.
function_name: Option<String>The name of the function containing the token.
Trait Implementations
Returns the “default value” for a type. Read more
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.