Trait Peek

Source
pub(crate) trait Peek: Copy {
    // Required methods
    fn matches(self, tok: Token) -> bool;
    fn display(self) -> impl Iterator<Item = &'static str>;
}
Expand description

A trait for testing whether a token matches a rule.

This trait is primarily implemented for Token to test for exact equality.

Required Methods§

Source

fn matches(self, tok: Token) -> bool

Returns true if a token matches this rule

Source

fn display(self) -> impl Iterator<Item = &'static str>

A string representation of the list of tokens matched by this rule. This is used to construct an error when using Lookahead1.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Peek for &'static str

Use a string to match an identifier equal to it

Source§

fn matches(self, tok: Token) -> bool

Source§

fn display(self) -> impl Iterator<Item = &'static str>

Source§

impl<T: Peek, const N: usize> Peek for [T; N]

Use an array to match any token in a set

Source§

fn matches(self, tok: Token) -> bool

Source§

fn display(self) -> impl Iterator<Item = &'static str>

Implementors§