[go: up one dir, main page]

http-types 1.3.1

Common types for HTTP operations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// Declares unstable items.
#[doc(hidden)]
macro_rules! cfg_unstable {
    ($($item:item)*) => {
        $(
            #[cfg(feature = "unstable")]
            #[cfg_attr(feature = "docs", doc(cfg(unstable)))]
            $item
        )*
    }
}