simplebyteunit

Crates.iosimplebyteunit
lib.rssimplebyteunit
version0.2.1
sourcesrc
created_at2023-09-27 05:38:20.231988
updated_at2023-10-01 01:57:44.332245
descriptionA thin encapsulate for integer primitives to facilitate a fast, simple, yet ergonomic byteunit implementation.
homepage
repositoryhttps://github.com/sapphirusberyl/simplebyteunit
max_upload_size
id984297
size21,271
Xavier Moffett (SapphirusBeryl)

documentation

README

Rust

SimpleByteUnit

SimpleByteUnit is a crate which provides a thin encapsulate for integer primitives to facilitate a fast, simple, yet ergonomic byteunit implementation.

Usage

Add 'simplebyteunit' to your 'Cargo.toml':

[dependencies]
simplebyteunit = "0.2.0"

Example

Generate a human-readable, formatted ByteUnit:

use simplebyteunit::simplebyteunit::*;

let byteunit_var = 500000.to_byteunit(SI);

println!("{byteunit_var}");

Output:

500 kB
Commit count: 13

cargo fmt