[][src]Struct kg_diag::io::LexToken

pub struct LexToken<T: LexTerm + Clone + Copy> { /* fields omitted */ }

Generic token structure (i.e. terminal along with it's location in source)

Methods

impl<T: LexTerm + Clone + Copy> LexToken<T>[src]

pub fn new(term: T, from: Position, to: Position) -> LexToken<T>[src]

pub fn term(&self) -> T[src]

pub fn from(&self) -> Position[src]

pub fn to(&self) -> Position[src]

pub fn from_offset(&self) -> usize[src]

pub fn to_offset(&self) -> usize[src]

pub fn span(&self) -> Span[src]

Trait Implementations

impl<T: Clone + LexTerm + Copy> Clone for LexToken<T>[src]

impl<T: Copy + LexTerm + Clone> Copy for LexToken<T>[src]

impl<T: LexTerm + Clone + Copy> Display for LexToken<T> where
    T: Display
[src]

impl<T: Debug + LexTerm + Clone + Copy> Debug for LexToken<T>[src]

Auto Trait Implementations

impl<T> Unpin for LexToken<T> where
    T: Unpin

impl<T> Sync for LexToken<T>

impl<T> Send for LexToken<T>

impl<T> UnwindSafe for LexToken<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for LexToken<T> where
    T: RefUnwindSafe

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]