Function parse_input_pair

pub fn parse_input_pair(raw: &str) -> Result<(String, String), String>
Expand description

Parses key/value pairs split by the first equal sign.

This function will return an error if the argument contains no equals sign or contains the key (before the equals sign) is empty.