pub trait EasyToken: EasyPeek + Parse + Spanned {
    fn display() -> &'static str;
}
Expand description

Peekable, parsable token.

easy_token! macro produces types that implement this trait.

Required Methods

Display the token for the user.

Implementors