pub fn check_screaming_snake_case(s: &str) -> Option<String>
If the string s is not SCREAMING_SNAKE_CASE, returns a Some(String) with the suggested conversion. Otherwise, returns None.
s
Some(String)
None