pub type IsAsciiAlphabetic = And<IsAscii, IsAlphabetic>;
Composition of IsAscii and IsDigit.
IsAscii
IsDigit
struct IsAsciiAlphabetic { /* private fields */ }