[][src]Struct symbolic_sourcemap::TokenMatch

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>,
}

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

impl<'a> Debug for TokenMatch<'a>[src]

impl<'a> Default for TokenMatch<'a>[src]

impl<'a> PartialEq<TokenMatch<'a>> for TokenMatch<'a>[src]

impl<'a> StructuralPartialEq for TokenMatch<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for TokenMatch<'a>

impl<'a> Send for TokenMatch<'a>

impl<'a> Sync for TokenMatch<'a>

impl<'a> Unpin for TokenMatch<'a>

impl<'a> UnwindSafe for TokenMatch<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.