147 lines
3.4 KiB
Rust
147 lines
3.4 KiB
Rust
//! A Collection of Header implementations for common HTTP Headers.
|
|
//!
|
|
//! ## Mime
|
|
//!
|
|
//! Several header fields use MIME values for their contents. Keeping with the
|
|
//! strongly-typed theme, the [mime](http://seanmonstar.github.io/mime.rs) crate
|
|
//! is used, such as `ContentType(pub Mime)`.
|
|
|
|
pub use self::accept::Accept;
|
|
pub use self::accept_encoding::AcceptEncoding;
|
|
pub use self::allow::Allow;
|
|
pub use self::authorization::Authorization;
|
|
pub use self::cache_control::CacheControl;
|
|
pub use self::cookie::Cookies;
|
|
pub use self::connection::Connection;
|
|
pub use self::content_length::ContentLength;
|
|
pub use self::content_type::ContentType;
|
|
pub use self::date::Date;
|
|
pub use self::etag::Etag;
|
|
pub use self::expires::Expires;
|
|
pub use self::host::Host;
|
|
pub use self::last_modified::LastModified;
|
|
pub use self::if_modified_since::IfModifiedSince;
|
|
pub use self::location::Location;
|
|
pub use self::transfer_encoding::TransferEncoding;
|
|
pub use self::upgrade::Upgrade;
|
|
pub use self::user_agent::UserAgent;
|
|
pub use self::vary::Vary;
|
|
pub use self::server::Server;
|
|
pub use self::set_cookie::SetCookie;
|
|
|
|
macro_rules! bench_header(
|
|
($name:ident, $ty:ty, $value:expr) => {
|
|
#[cfg(test)]
|
|
mod $name {
|
|
use test::Bencher;
|
|
use super::*;
|
|
|
|
use header::{Header, HeaderFormatter};
|
|
|
|
#[bench]
|
|
fn bench_parse(b: &mut Bencher) {
|
|
let val = $value;
|
|
b.iter(|| {
|
|
let _: $ty = Header::parse_header(&val[]).unwrap();
|
|
});
|
|
}
|
|
|
|
#[bench]
|
|
fn bench_format(b: &mut Bencher) {
|
|
let val: $ty = Header::parse_header(&$value[]).unwrap();
|
|
let fmt = HeaderFormatter(&val);
|
|
b.iter(|| {
|
|
format!("{}", fmt);
|
|
});
|
|
}
|
|
}
|
|
}
|
|
);
|
|
|
|
macro_rules! deref(
|
|
($from:ty => $to:ty) => {
|
|
impl ::std::ops::Deref for $from {
|
|
type Target = $to;
|
|
|
|
fn deref<'a>(&'a self) -> &'a $to {
|
|
&self.0
|
|
}
|
|
}
|
|
|
|
impl ::std::ops::DerefMut for $from {
|
|
fn deref_mut<'a>(&'a mut self) -> &'a mut $to {
|
|
&mut self.0
|
|
}
|
|
}
|
|
}
|
|
);
|
|
|
|
/// Exposes the AccessControl* family of headers.
|
|
pub mod access_control;
|
|
|
|
/// Exposes the Accept header.
|
|
pub mod accept;
|
|
|
|
/// Exposes the AcceptEncoding header.
|
|
pub mod accept_encoding;
|
|
|
|
/// Exposes the Allow header.
|
|
pub mod allow;
|
|
|
|
/// Exposes the Authorization header.
|
|
pub mod authorization;
|
|
|
|
/// Exposes the CacheControl header.
|
|
pub mod cache_control;
|
|
|
|
/// Exposes the Cookie header.
|
|
pub mod cookie;
|
|
|
|
/// Exposes the Connection header.
|
|
pub mod connection;
|
|
|
|
/// Exposes the ContentLength header.
|
|
pub mod content_length;
|
|
|
|
/// Exposes the ContentType header.
|
|
pub mod content_type;
|
|
|
|
/// Exposes the Date header.
|
|
pub mod date;
|
|
|
|
/// Exposes the Etag header.
|
|
pub mod etag;
|
|
|
|
/// Exposes the Expires header.
|
|
pub mod expires;
|
|
|
|
/// Exposes the Host header.
|
|
pub mod host;
|
|
|
|
/// Exposes the LastModified header.
|
|
pub mod last_modified;
|
|
|
|
/// Exposes the If-Modified-Since header.
|
|
pub mod if_modified_since;
|
|
|
|
/// Exposes the Location header.
|
|
pub mod location;
|
|
|
|
/// Exposes the Server header.
|
|
pub mod server;
|
|
|
|
/// Exposes the Set-Cookie header.
|
|
pub mod set_cookie;
|
|
|
|
/// Exposes the TransferEncoding header.
|
|
pub mod transfer_encoding;
|
|
|
|
/// Exposes the Upgrade header.
|
|
pub mod upgrade;
|
|
|
|
/// Exposes the UserAgent header.
|
|
pub mod user_agent;
|
|
|
|
/// Exposes the Vary header.
|
|
pub mod vary;
|