net-core-api 0.5.3

This crate defines core traits and types for the api defined through the net-stalker project. Amazon Ion is used as the serialization format.
Documentation
1
2
3
4
pub trait Decoder {
    //TODO: Think of returning Result istread of walue for logs in future
    fn decode(data: &[u8]) -> Self where Self : Sized;
}