pub fn parse_cli_key_val(
key_value_pair: &str,
) -> Result<Rebind, Box<dyn Error + Send + Sync + 'static>>Expand description
Parse a single key-value pair from cli arg. This is implemented from examples in clap crate docs: https://docs.rs/clap/latest/clap/builder/struct.ValueParser.html#example-1