abin 0.1.6

A library for working with binaries and strings. The library tries to avoid heap-allocations / memory-copy whenever possible by automatically choosing a reasonable strategy: stack for small binaries; static-lifetime-binary or reference-counting.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod binary;
mod boo;
mod default_scopes;
mod ri_deserialization_base_bin;
mod ri_deserialization_base_str;
mod ri_deserialization_bin;
mod ri_deserialization_str;
mod scoped_ri;
mod string;

pub use {
    binary::*, boo::*, default_scopes::*, ri_deserialization_bin::*, ri_deserialization_str::*,
    scoped_ri::*, string::*,
};

pub(crate) use {ri_deserialization_base_bin::*, ri_deserialization_base_str::*};