pub trait KeywordList {
    const KEYWORDS: &'static [&'static str];
}
Expand description

A trait for parameterizing CustomIdent over a set of keywords.

Required Associated Constants

The exhaustive list of keywords that should not be allowed as an identifier.

Implementors