comprehensive_traits/lib.rs
1//! Shared trait definitions for common [`comprehensive`] resources
2//!
3//! This crate defines traits that are designed to be implemented and exported
4//! by one [`Resource`] and consumed by another, so that the implementor and
5//! consumer do not depend on one another.
6//!
7//! [`comprehensive`]: https://docs.rs/comprehensive/latest/comprehensive/
8//! [`Resource`]: https://docs.rs/comprehensive/latest/comprehensive/v1/trait.Resource.html
9
10#![warn(missing_docs)]
11
12#[cfg(feature = "http_diag")]
13pub mod http_diag;