[][src]Struct erl_parse::TokenReader

pub struct TokenReader<T, E> { /* fields omitted */ }

Methods

impl<T, E> TokenReader<T, E> where
    T: Iterator<Item = Result<LexicalToken, E>> + Preprocessor,
    Error: From<E>, 
[src]

pub fn new(inner: T) -> Self[src]

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

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

pub fn into_inner(self) -> T[src]

Trait Implementations

impl<T, E> Preprocessor for TokenReader<T, E> where
    T: Preprocessor
[src]

impl<T, E> TokenRead for TokenReader<T, E> where
    T: Iterator<Item = Result<LexicalToken, E>> + Preprocessor,
    Error: From<E>, 
[src]

impl<T: Debug, E: Debug> Debug for TokenReader<T, E>[src]

Auto Trait Implementations

impl<T, E> Send for TokenReader<T, E> where
    E: Send,
    T: Send

impl<T, E> Sync for TokenReader<T, E> where
    E: Sync,
    T: Sync

Blanket Implementations

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.

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]