pub trait AbstractInputItem<I>: AsChar + PartialEq<I> + From<u8> + Clone {
    fn is_alphabetic(c: I) -> bool;
fn is_alphanumeric(c: I) -> bool;
fn is_token(c: I) -> bool; }

Required methods

Implementations on Foreign Types

Implementors