in azure-kusto-data/src/connection_string.rs [1078:1086]
fn parse_boolean(term: &str, name: &str) -> Result<bool, ConnectionStringError> {
match term.to_lowercase().trim() {
"true" => Ok(true),
"false" => Ok(false),
_ => Err(ConnectionStringError::from_parsing_error(format!(
"Unexpected value for {name}: {term}. Please specify either 'true' or 'false'."
))),
}
}