rocket/http/
mod.rs

1//! Types that map to concepts in HTTP.
2//!
3//! This module exports types that map to HTTP concepts or to the underlying
4//! HTTP library when needed.
5
6mod cookies;
7
8#[doc(inline)]
9pub use rocket_http::*;
10
11#[doc(inline)]
12pub use cookies::*;