pub fn format_percent_column(value: f64, width: usize) -> StringExpand description
Format a percentage into a fixed-width column (right-aligned).
ยงExamples
use batuta_common::display::format_percent_column;
assert_eq!(format_percent_column(45.3, 7), " 45.3%");