#deserialize #u64 #details #optional #values #hide #byte-unit

byte-unit-serde

De/serialization functions for byte-unit crate

1 unstable release

0.1.0 Feb 17, 2024

#1872 in Encoding

Download history 44/week @ 2024-07-20 59/week @ 2024-07-27 62/week @ 2024-08-03 55/week @ 2024-08-10 35/week @ 2024-08-17 44/week @ 2024-08-24 78/week @ 2024-08-31 54/week @ 2024-09-07 41/week @ 2024-09-14 152/week @ 2024-09-21 159/week @ 2024-09-28 141/week @ 2024-10-05 93/week @ 2024-10-12 103/week @ 2024-10-19 104/week @ 2024-10-26 106/week @ 2024-11-02

417 downloads per month

MIT/Apache

8KB
108 lines

byte-unit-serde

tests crates.io Documentation MIT/Apache-2 licensed

This crate provides de/serialization helper for byte-unit crate to use in combination with serde's with-annotation. This might be useful because it hides a byte-unit crate as an implementation details and allows use the simple u64 type instead. In other words, by using this crate, your code will not depend on the byte-unit crate.

Example

use serde::{Serialize, Deserialize};

#[derive(Serialize, Deserialize)]
struct Foo {
    #[serde(with = "byte_unit_serde")]
    max_size: u64,
    /// This module also supports an optional values.
    #[serde(default, with = "byte_unit_serde")]
    min_size: Option<u64>,
}

The idea of this crate is heavily inspired by humantime-serde.

Dependencies

~1.3–1.9MB
~37K SLoC