Skip to main content

titan_api_codec/dec/
mod.rs

1//! Utilities for decoding messages from binary representations.
2
3pub mod common;
4#[cfg(feature = "messagepack")]
5pub mod messagepack;
6
7pub use common::{DecodeError, Decoder};