Trait rune::Peek[][src]

pub trait Peek {
    fn peek(p: &mut Peeker<'_>) -> bool;
}
Expand description

Implemented by tokens that can be peeked for.

Required methods

Peek the parser for the given token.

Implementations on Foreign Types

Peek implementation for something that is boxed.

Implementors