coap_message_utils/
lib.rs

1//! Tools for using a coap-message
2//!
3//! This crate contains extension traits and other tools that are useful when working with
4//! items that implement the [coap_message] trait.
5#![doc = document_features::document_features!()]
6#![no_std]
7#![cfg_attr(feature = "_nightly_docs", feature(doc_auto_cfg))]
8
9mod error;
10pub use error::Error;
11
12mod debug;
13pub use debug::{ShowCodeExt, ShowMessageExt};
14
15pub mod option_value;
16
17mod option_processing;
18pub use option_processing::OptionsExt;