bytevec 0.1.1

A Rust serialization library that uses byte vectors
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod collections;
mod primitives;

/* // Uncomment when specialization becomes stable
use {ByteEncodable, BVEncodeResult};

impl<'a, E: ByteEncodable>  ByteEncodable for &'a E {
    fn get_size(&self) -> Option<u32> {
        (**self).get_size()
    }

    fn encode(&self) -> BVEncodeResult<Vec<u8>> {
        (**self).encode()
    }
}
*/