pub fn format_unit_expr_with_config(
expr: &UnitExpr,
parenthesize_multi_denom: bool,
) -> StringExpand description
Format a UnitExpr as a human-readable label.
E.g., m, km/hour, kg * m / s^2
If parenthesize_multi_denom is true, multi-term denominators are wrapped in parentheses:
m / (s * kg) instead of m / s * kg.