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: u32

The line number in the original source file.

src_col: u32

The column number in the original source file.

dst_line: u32

The column number in the minifid source file.

dst_col: u32

The column number in the minified source file.

src_id: u32

The 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

Formats the value using the given formatter. Read more

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 !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.