unbytify 0.2.0

Convert units of digital information from string into the numeric equivalent and the other way around
Documentation
  • Coverage
  • 100%
    6 out of 6 items documented3 out of 4 items with examples
  • Size
  • Source code size: 25.26 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.64 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • niamster/unbytify
    3 2 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • niamster

Crates.io Docs.rs Linux Build Status Windows Build Status Codecov Coveralls License

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.