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