3 unstable releases
Uses old Rust 2015
0.2.0 | Apr 21, 2018 |
---|---|
0.1.1 | May 19, 2017 |
0.1.0 | May 19, 2017 |
#10 in #humanize
1,387 downloads per month
Used in 2 crates
10KB
148 lines
Unbytify - Rust library to parse and represent digital units
Table of Contents
Introduction
Unbytify converts KiB, MiB, etc. into integer and the other way around.
Sometimes people call this humanization.
In your project
In Cargo.toml:
[dependencies]
unbytify = "0.2"
Usage
In your main.rs
:
extern crate unbytify;
use unbytify::*;
fn main() {
assert_eq!(unbytify("1.5K"), Ok(1024 + 512));
assert_eq!(bytify(1024 + 512), (1.5, "KiB"));
}
Documentation
Most of the useful documentation can be gotten using rustdoc.
Check it out on docs.rs/unbytify.
License
Unbytify project is licensed under Apache-2.0 license.
Dependencies
~14KB