A byte size parsed from a human-readable string with optional `K`, `M`, or `G` suffix. The suffix is binary (1K = 1024, 1M = 1048576, 1G = 1073741824). A bare integer is treated as bytes.
| 319 | /// The suffix is binary (1K = 1024, 1M = 1048576, 1G = 1073741824). |
| 320 | /// A bare integer is treated as bytes. |
| 321 | pub struct ByteSized(pub u64); |
| 322 | |
| 323 | #[derive(Error, Debug)] |
| 324 | pub enum ByteSizedParseError { |