[][src]Struct lrpar::Lexeme

pub struct Lexeme<StorageT> { /* fields omitted */ }

A Lexeme represents a segment of the user's input that conforms to a known type. Note that even if the type of a lexeme seemingly requires it to have len() > 0 (e.g. integers might match the regular expressions [0-9]+), error recovery might cause a lexeme to have a length of 0. Users can detect the difference between a lexeme with an intentionally zero length from a lexeme with zero length due to error recovery through the inserted method.

Methods

impl<StorageT: Copy> Lexeme<StorageT>[src]

pub fn new(tok_id: StorageT, start: usize, len: Option<usize>) -> Self[src]

Create a new token with ID tok_id and a starting position in the input start. If the token is the result of user input, then Some(n) should be passed to len; if the token is the result of error recovery, then None should be passed to len.

pub fn tok_id(&self) -> StorageT[src]

The token ID.

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

Byte offset of the start of the lexeme

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

Byte offset of the end of the lexeme.

Note that if this lexeme was inserted by error recovery, it will end at the same place it started (i.e. self.start() == self.end()).

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

Length in bytes of the lexeme.

Note that if this lexeme was inserted by error recovery, it will have a length of 0.

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

Returns true if this lexeme was inserted as the result of error recovery, or false otherwise.

Trait Implementations

impl<StorageT: Clone> Clone for Lexeme<StorageT>[src]

impl<StorageT: Copy> Copy for Lexeme<StorageT>[src]

impl<StorageT: Debug> Debug for Lexeme<StorageT>[src]

impl<StorageT: Eq> Eq for Lexeme<StorageT>[src]

impl<StorageT: Hash> Hash for Lexeme<StorageT>[src]

impl<StorageT: PartialEq> PartialEq<Lexeme<StorageT>> for Lexeme<StorageT>[src]

impl<StorageT> StructuralEq for Lexeme<StorageT>[src]

impl<StorageT> StructuralPartialEq for Lexeme<StorageT>[src]

Auto Trait Implementations

impl<StorageT> RefUnwindSafe for Lexeme<StorageT> where
    StorageT: RefUnwindSafe

impl<StorageT> Send for Lexeme<StorageT> where
    StorageT: Send

impl<StorageT> Sync for Lexeme<StorageT> where
    StorageT: Sync

impl<StorageT> Unpin for Lexeme<StorageT> where
    StorageT: Unpin

impl<StorageT> UnwindSafe for Lexeme<StorageT> where
    StorageT: UnwindSafe

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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, U> TryInto<U> for T where
    U: TryFrom<T>, 

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