Struct astray::TokenIter

source ·
pub struct TokenIter<Token> {
    pub current: usize,
    pub tokens: Vec<Token, Global>,
    pub stack: Vec<usize, Global>,
    /* private fields */
}

Fields§

§current: usize§tokens: Vec<Token, Global>§stack: Vec<usize, Global>

Implementations§

source§

impl<Token> TokenIter<Token>where Token: ConsumableToken,

source

pub fn new(tokens: Vec<Token, Global>) -> TokenIter<Token>

source

pub fn try_do<F, Q, E>(&mut self, f: F) -> Result<Q, E>where F: FnOnce(&mut TokenIter<Token>) -> Result<Q, E>,

source

pub fn parse<P>(&mut self) -> Result<P, ParseError<Token>>where P: Parsable<Token>,

source

pub fn parse_if_match<F, P>( &mut self, matcher: F, pattern: Option<&'static str> ) -> Result<P, ParseError<Token>>where P: Parsable<Token>, F: Fn(&<P as Parsable<Token>>::ApplyMatchTo) -> bool,

source

pub fn parse_while<I, F, Q>(&mut self, _keep_going: F) -> Iwhere I: FromIterator<Q>, F: Fn(&Q) -> bool, Q: Parsable<Token>,

source

pub fn consume(&mut self) -> Option<Token>

source

pub fn get(&self, position: usize) -> Option<Token>

Auto Trait Implementations§

§

impl<Token> RefUnwindSafe for TokenIter<Token>where Token: RefUnwindSafe,

§

impl<Token> Send for TokenIter<Token>where Token: Send,

§

impl<Token> Sync for TokenIter<Token>where Token: Sync,

§

impl<Token> Unpin for TokenIter<Token>where Token: Unpin,

§

impl<Token> UnwindSafe for TokenIter<Token>where Token: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.