1 unstable release

0.2.1 Jan 15, 2020

#28 in #peek

Download history 246/week @ 2024-07-22 238/week @ 2024-07-29 215/week @ 2024-08-05 402/week @ 2024-08-12 229/week @ 2024-08-19 288/week @ 2024-08-26 286/week @ 2024-09-02 214/week @ 2024-09-09 226/week @ 2024-09-16 301/week @ 2024-09-23 227/week @ 2024-09-30 20/week @ 2024-10-07 188/week @ 2024-10-14 201/week @ 2024-10-21 216/week @ 2024-10-28 185/week @ 2024-11-04

791 downloads per month
Used in peek-poke

MIT/Apache

12KB
216 lines

Peeks, Pokes, and Pointers

Peek from and poke structures into byte slices.

Benchmark

Below are the benchmark results of comparison between peek-poke and bincode serializing and deserializing same struct:

struct MyPeekPokeStruct {
    a: u8,
    b: u16,
    c: MyPeekPokeEnum,
    d: Option<usize>,
}

enum MyPeekPokeEnum {
    Variant1,
    Variant2(u16),
}
Benchmarking struct::serialize/peek_poke::poke_into: Collecting 100 samples in                                                                                struct::serialize/peek_poke::poke_into
                        time:   [2.7267 ns 2.7321 ns 2.7380 ns]

Benchmarking struct::serialize/bincode::serialize: Collecting 100 samples in est                                                                                struct::serialize/bincode::serialize
                        time:   [31.264 ns 31.326 ns 31.389 ns]

Benchmarking struct::deserialize/peek_poke::peek_from: Collecting 100 samples                                                                                 struct::deserialize/peek_poke::peek_from
                        time:   [5.3544 ns 5.3672 ns 5.3817 ns]

Benchmarking struct::deserialize/bincode::deserialize: Collecting 100 samples in                                                                                struct::deserialize/bincode::deserialize
                        time:   [25.155 ns 26.439 ns 27.661 ns]

You can run benchmarks by running following command:

cargo bench

License

Licensed under either of

at your option.

see LICENSE-APACHE, LICENSE-MIT for details.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as about, without any additional terms or conditions.

Dependencies

~1.5MB
~39K SLoC