fn split_camel_segment<'input>( camel_case: &mut &'input str, ) -> Option<&'input str>
Given “FooBar”, returns “Foo” and sets camel_case to “Bar”.
camel_case