2 releases

0.1.2 Jul 3, 2024
0.1.1 Apr 3, 2021

#1065 in Parser implementations

Download history 15/week @ 2024-08-03 25/week @ 2024-08-10 15/week @ 2024-08-17 10/week @ 2024-08-24 27/week @ 2024-08-31 24/week @ 2024-09-07 51/week @ 2024-09-14 36/week @ 2024-09-21 41/week @ 2024-09-28 28/week @ 2024-10-05 33/week @ 2024-10-12 32/week @ 2024-10-19 22/week @ 2024-10-26 41/week @ 2024-11-02 24/week @ 2024-11-09 31/week @ 2024-11-16

119 downloads per month
Used in pods-blitz

MIT/Apache

7KB
84 lines

fmtsize

Format memory sizes.

Usage

Import the trait and call the method.

use fmtsize::{Conventional, FmtSize};

println!("{}", 492_752_310_u64.fmt_size(Conventional)); // 469.93 MB

License

MIT or Apache 2.0. Pick whichever you like.


lib.rs:

fmtsize

fmtsize provides human-readable formatting for things like file sizes. It attempts to find the largest shorthand size possible for a given value, although it's limited to "gigabytes." Someday we may upgrade to terabytes. :)

println!("{}", 492_752_310_u64.fmt_size(Conventional)); // 469.93 MB

No runtime deps