pub trait EasyToken: EasyPeek + Parse + Spanned { // Required method fn display() -> &'static str; }
Peekable and parsable single token.
easy_token! macro produces types that implement this trait.
easy_token!
Display the token for the user.