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
5
6
use std::fmt::Debug;

use crate::core::decoder_api::Decoder;
use crate::core::encoder_api::Encoder;
use crate::core::typed_api::Typed;
pub trait API : Decoder + Encoder + Typed + Debug {}