Struct ruschm::parser::Lexer[][src]

pub struct Lexer<CharIter: Iterator<Item = char>> {
    pub current: Option<char>,
    pub peekable_char_stream: Peekable<CharIter>,
    // some fields omitted
}

Fields

current: Option<char>peekable_char_stream: Peekable<CharIter>

Implementations

impl<CharIter: Iterator<Item = char>> Lexer<CharIter>[src]

pub fn from_char_stream(char_stream: CharIter) -> Lexer<CharIter>

Notable traits for Lexer<CharIter>

impl<CharIter: Iterator<Item = char>> Iterator for Lexer<CharIter> type Item = Result<Token, SchemeError>;
[src]

pub fn set_last_location(&mut self, location: [u32; 2])[src]

Trait Implementations

impl<CharIter: Iterator<Item = char>> Iterator for Lexer<CharIter>[src]

type Item = Result<Token, SchemeError>

The type of the elements being iterated over.

Auto Trait Implementations

impl<CharIter> RefUnwindSafe for Lexer<CharIter> where
    CharIter: RefUnwindSafe

impl<CharIter> Send for Lexer<CharIter> where
    CharIter: Send

impl<CharIter> Sync for Lexer<CharIter> where
    CharIter: Sync

impl<CharIter> Unpin for Lexer<CharIter> where
    CharIter: Unpin

impl<CharIter> UnwindSafe for Lexer<CharIter> where
    CharIter: 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<T> From<T> for T[src]

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

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T> Itertools for T where
    T: Iterator + ?Sized
[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.