/// A kind of lexical token.
pubtraitTokenKind{/// Gets the kind of token to be used when there are no matching rules.
fnunknown()->Self;/// Gets the end-of-file token kind.
fneof()->Self;/// Gets the display label for this token kind. (e.g. `"identifier"`, `"'{'"`, `"end of file"`)
fnlabel(&self)->&'staticstr;}