use Write;
///A data format that can be use by a kekbit channel
///An entity which can be written in a channel using the specified data format
// struct JsonDataFormat;
// impl DataFormat for JsonDataFormat {
// fn id() -> u64 {
// 17
// }
// fn media_type() -> &'static str {
// "application/json"
// }
// }
// impl<T: Serialize> Encodable<JsonDataFormat> for T {
// fn encode_to(&self, _format: &JsonDataFormat, w: &mut impl Write) {
// to_writer(w, self).unwrap();
// }
// }