pub trait CharSet { const NAME: &'static str; // Required method fn check(data: &[u8]) -> bool; }
Checks whether a sequence is a valid string or not.