mqtt-tiny 0.4.0

A tiny MQTT v3.1.1 codec implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Iterator based en-/decoding
#![doc(hidden)]

pub mod decoder;
pub mod encoder;
pub mod length;

/// An blank encoder
pub type Encoder = encoder::Encoder;
/// A decoder
pub type Decoder<T> = decoder::Decoder<T>;