MemorySize Type

Build MIT License API docs crates.io

This crate provides the MemorySize data type as a size unit. This might help errors during conversion between different units as well as comfort for printing the managed size as a human-readable value.

Usage

To use this library, you just have to add the following lines into your projects Cargo.toml:

toml [dependencies.memory-size-type] version = "0.4.0" default-features = false features = ["std"]

Features

The crate is seperated into several features to reduce its size (even with this small crate). You can use the following features to enable the stuff you really need in your project:

| Feature | Description | |:-----------|:------------------------------------------------------------------------------------| | std | Include features like implementations for std::fmt::Debug and std::fmt::Display | | deprecated | Include the deprecated features like the MemorySize type. |

Examples

There are different use-cases for this library. The following examples represent just some possible usages.

Creating an instance from raw byte information

```rust use memorysizetype::Byte;

let sizeinfobyte = Byte::from(1024); ```

Calculating with memory sizes

```rust use memorysizetype::Byte;

let somebytes = Byte::from(1024); let somemore_bytes = Byte::from(1024);

asserteq!(somebytes + somemorebytes, 2048); ```