1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! 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;