net_core_api/core/
api.rs

1use std::fmt::Debug;
2
3use crate::core::decoder_api::Decoder;
4use crate::core::encoder_api::Encoder;
5use crate::core::typed_api::Typed;
6pub trait API : Decoder + Encoder + Typed + Debug {}