Rocket/lib/src/http/mod.rs

23 lines
669 B
Rust
Raw Normal View History

2016-10-18 02:29:58 +00:00
//! [unstable] Types that map to concepts in HTTP.
//!
//! This module exports types that map to HTTP concepts or to the underlying
//! HTTP library when needed. Because the underlying HTTP library is likely to
//! change (see <a
//! href="https://github.com/SergioBenitez/Rocket/issues/17">#17</a>), most of
//! this module should be considered unstable.
pub mod hyper;
2016-10-04 00:25:27 +00:00
pub mod uri;
mod cookies;
mod method;
mod content_type;
// TODO: Removed from Rocket in favor of a more flexible HTTP library.
pub use hyper::mime;
pub use self::method::Method;
pub use self::hyper::StatusCode;
pub use self::content_type::ContentType;
2016-10-18 02:29:58 +00:00
pub use self::cookies::{Cookie, Cookies};