1
2
3
4
5
6
use std::fmt::Debug;

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