pub trait Token: Display + Copy + Eq {
    fn is_whitespace(&self) -> bool;
    fn next_token(s: &str) -> Result<Option<(Self, usize)>>;

    fn tokenize(s: &str) -> Result<Vec<(Self, &str)>> { ... }
}

Required methods

Provided methods

Implementors