pub fn format_bytes_column(bytes: u64, width: usize) -> StringExpand description
Format bytes into a fixed-width column (SI units, right-aligned).
ยงExamples
use batuta_common::display::format_bytes_column;
assert_eq!(format_bytes_column(1500, 6), " 1.50K");