1 2 3 4 5
pub fn is_valid_screen_name(value: &str) -> bool { value .chars() .all(|ch| ch.is_ascii_alphanumeric() || ch == '_') }