pub trait Pattern { // Required method fn matches(&self, char: char) -> bool; }
A pattern that matches a character.
Check if a character matches the pattern.