[][src]Struct sourcemap::Token

pub struct Token<'a> { /* fields omitted */ }

Represents a token from a sourcemap

Methods

impl<'a> Token<'a>[src]

pub fn get_dst_line(&self) -> u32[src]

get the destination (minified) line number

pub fn get_dst_col(&self) -> u32[src]

get the destination (minified) column number

pub fn get_dst(&self) -> (u32, u32)[src]

get the destination line and column

pub fn get_src_line(&self) -> u32[src]

get the source line number

pub fn get_src_col(&self) -> u32[src]

get the source column number

pub fn get_src(&self) -> (u32, u32)[src]

get the source line and column

pub fn get_src_id(&self) -> u32[src]

Return the source ID of the token

pub fn get_source(&self) -> Option<&'a str>[src]

get the source if it exists as string

pub fn has_source(&self) -> bool[src]

Is there a source for this token?

pub fn get_name(&self) -> Option<&'a str>[src]

get the name if it exists as string

pub fn has_name(&self) -> bool[src]

returns true if a name exists, false otherwise

pub fn get_name_id(&self) -> u32[src]

Return the name ID of the token

pub fn to_tuple(&self) -> (&'a str, u32, u32, Option<&'a str>)[src]

Converts the token into a debug tuple in the form (source, src_line, src_col, name)

pub fn get_raw_token(&self) -> RawToken[src]

Get the underlying raw token

Trait Implementations

impl<'a> Eq for Token<'a>[src]

impl<'a> Clone for Token<'a>[src]

impl<'a> PartialOrd<Token<'a>> for Token<'a>[src]

impl<'a> Ord for Token<'a>[src]

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

impl<'a> Copy for Token<'a>[src]

impl<'a> Display for Token<'a>[src]

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

Auto Trait Implementations

impl<'a> Unpin for Token<'a>

impl<'a> !Sync for Token<'a>

impl<'a> !Send for Token<'a>

impl<'a> !UnwindSafe for Token<'a>

impl<'a> !RefUnwindSafe for Token<'a>

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for 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.

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

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

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