abomonation 0.7.3

A high performance and very unsafe serialization library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

use std::mem::transmute;
use std::marker::PhantomData;
use std::ops::{Deref, DerefMut};

use super::{Abomonation, decode};

/// A type emulating a Vec<T> using an abomonated representation.
pub struct AbomVec<T: Abomonation> {
    roots: Vec<T>,
    bytes: Vec<u8>,
}

impl<T: Abomonation> AbomVec<T> {

}