Struct tokenizer_lib::GeneratorTokenQueue[][src]

pub struct GeneratorTokenQueue<T, TData, TGeneratorState, TGenerator> where
    T: PartialEq,
    for<'a> TGenerator: FnMut(&mut TGeneratorState, &mut GeneratorTokenQueueBuffer<'a, T, TData>), 
{ /* fields omitted */ }
Expand description

A token queue which has a backing generator/lexer which is called when needed by parsing logic

Implementations

Create a new GeneratorTokenQueue with a lexer function and initial state

Trait Implementations

Returns the next token and advances

Returns a reference to next token but does not advance current position

Runs the closure (cb) over upcoming tokens. Passes the value behind the Token to the closure. Will stop and return a reference to the next Token from when the closure returns true. Returns None if scanning finishes before closure returns true. Does not advance the reader. Read more

Tests that next token matches an expected type. Will return error if does not match. The Ok value contains the data of the valid token. Else it will return the Err with the expected token type and the token that did not match Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.