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.
Add the following to your Cargo.toml
:
toml
[dependencies]
convert-byte-size-string = "1.0"
In your code, you can:
```rust use convertbytesizestring::convertto_bytes;
let size: u128 = converttobytes("7.9 EiB").unwrap(); ```
This library has a fairly basic set of features: