1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//! `sage_mqtt` is a an encoding/decoding library for MQTT 5.0 protocol.
//! The library consists in pivot types, such as `UTF8String` that can be
//! written to and read from a stream as well as converted to standard Rust
//! types.
#![warn(missing_docs)]
#![warn(rustdoc::missing_doc_code_examples)]
#![allow(clippy::large_enum_variant)]

mod authentication;
/// encode/decode MQTT fundamental types
pub mod codec;
mod control;
pub mod defaults;
mod error;
mod packet;
mod packet_type;
mod property;
mod quality_of_service;
mod reason_code;
mod topic;
mod will;
pub use authentication::Authentication;
pub use control::{
    Auth, ClientID, ConnAck, Connect, Disconnect, PingReq, PingResp, PubAck, PubComp, PubRec,
    PubRel, Publish, RetainHandling, SubAck, Subscribe, SubscriptionOptions, UnSubAck, UnSubscribe,
};
pub use error::{Error, Result};
pub use packet::Packet;
use packet_type::PacketType;
use property::{PropertiesDecoder, Property};
pub use quality_of_service::QoS;
pub use reason_code::ReasonCode;
pub use topic::Topic;
pub use will::Will;