4 stable releases
1.1.2 | May 3, 2021 |
---|---|
1.1.0 | Mar 4, 2019 |
1.0.0 | Mar 4, 2019 |
#4 in #u128
13KB
288 lines
convert-byte-size-string
This crate provides functionality to convert an arbitrary byte size string such as "7.9 EiB" into a u128
value usable wherever you need it.
Usage
Add the following to your Cargo.toml
:
[dependencies]
convert-byte-size-string = "1.0"
In your code, you can:
use convert_byte_size_string::convert_to_bytes;
let size: u128 = convert_to_bytes("7.9 EiB").unwrap();
Features
This library has a fairly basic set of features:
- Convert byte size strings to u128 values based on the unit in the string, interpreting the unit as either a base 2 unit or a base 10 unit
- Convert byte size strings based on the unit in the string, forcing the unit to be treated as either base 10 or base 2