atd-core 0.0.1

ATD: Position-based Binary Serialization Format.
Documentation
1
2
3
4
5
6
7
pub trait SerializeAtd {
    fn to_atd(&self) -> Vec<u8>;
}

pub trait DeserializeAtd {
    fn from_atd(buf: &[u8]) -> Self;
}