extract_commented_setting_key

Function extract_commented_setting_key 

Source
fn extract_commented_setting_key(line: &str) -> Option<&str>
Expand description

Extract the settings key from a commented-out template line. Matches lines like: // "some:key": value, Returns Some("some:key") or None.