redis_protocol/resp3/mod.rs
1/// Decoding functions for `BytesMut` and slices.
2pub mod decode;
3/// Encoding functions for `BytesMut` and slices.
4pub mod encode;
5/// RESP3 frame types.
6pub mod types;
7
8pub(crate) mod utils;
9
10#[cfg(test)]
11mod _test {
12 #[test]
13 #[cfg(feature = "decode-logs")]
14 fn _enable_logging() {
15 let _ = pretty_env_logger::try_init();
16 }
17}