ic_http_certification/tree/
mod.rs

1//! The Tree module contains functions and builders for managing certified
2//! [HttpRequest](crate::HttpRequest) and [HttpResponse](crate::HttpResponse) pairs in a
3//! purpose-build HTTP certification data structure.
4//!
5//! Certifications are prepared using the [HttpCertification] enum.
6
7mod certification;
8mod certification_tree;
9mod certification_tree_entry;
10mod certification_tree_path;
11
12pub use certification::*;
13pub use certification_tree::*;
14pub use certification_tree_entry::*;
15pub use certification_tree_path::*;