fn split_at_first_unescaped_equals(s: &str) -> Option<(&str, &str)>
Split a string at the first ‘=’ that is not immediately preceded by ’'. Returns None if no unescaped equals sign is found.
None