[][src]Struct cfg_expr::expr::lexer::LexerToken

pub struct LexerToken<'a> {
    pub token: Token<'a>,
    pub span: Range<usize>,
}

A wrapper around a particular token that includes the span of the characters in the original string, for diagnostic purposes

Fields

token: Token<'a>

The token that was lexed

span: Range<usize>

The range of the token characters in the original license expression

Trait Implementations

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for LexerToken<'a>

impl<'a> Send for LexerToken<'a>

impl<'a> Sync for LexerToken<'a>

impl<'a> Unpin for LexerToken<'a>

impl<'a> UnwindSafe for LexerToken<'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.