coap_message_utils/lib.rs
//! Tools for using a coap-message
//!
//! This crate contains extension traits and other tools that are useful when working with
//! items that implement the [coap_message] trait.
#![doc = document_features::document_features!()]
#![no_std]
#![cfg_attr(feature = "_nightly_docs", feature(doc_auto_cfg))]
mod error;
pub use error::Error;
pub mod option_value;
mod option_processing;
pub use option_processing::OptionsExt;