1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 21:39:26 +00:00
actix-web/actix-http/src/lib.rs

76 lines
1.7 KiB
Rust
Raw Normal View History

2019-03-26 18:54:35 +00:00
//! Basic http primitives for actix-net framework.
2019-12-07 18:46:51 +00:00
#![deny(rust_2018_idioms, warnings)]
#![allow(
clippy::type_complexity,
clippy::too_many_arguments,
clippy::new_without_default,
clippy::borrow_interior_mutable_const,
// clippy::write_with_newline
)]
2019-03-26 18:54:35 +00:00
#[macro_use]
extern crate log;
pub mod body;
mod builder;
2019-11-18 12:42:27 +00:00
pub mod client;
mod cloneable;
2019-03-26 18:54:35 +00:00
mod config;
#[cfg(feature = "compress")]
2019-03-26 22:14:32 +00:00
pub mod encoding;
2019-03-26 18:54:35 +00:00
mod extensions;
mod header;
mod helpers;
mod httpcodes;
pub mod httpmessage;
mod message;
mod payload;
mod request;
mod response;
mod service;
2019-03-30 04:13:39 +00:00
pub mod cookie;
2019-03-26 18:54:35 +00:00
pub mod error;
pub mod h1;
pub mod h2;
2019-11-18 12:42:27 +00:00
pub mod test;
pub mod ws;
2019-03-26 18:54:35 +00:00
pub use self::builder::HttpServiceBuilder;
pub use self::config::{KeepAlive, ServiceConfig};
pub use self::error::{Error, ResponseError, Result};
pub use self::extensions::Extensions;
pub use self::httpmessage::HttpMessage;
pub use self::message::{Message, RequestHead, RequestHeadType, ResponseHead};
2019-03-26 18:54:35 +00:00
pub use self::payload::{Payload, PayloadStream};
pub use self::request::Request;
pub use self::response::{Response, ResponseBuilder};
pub use self::service::HttpService;
2019-03-26 18:54:35 +00:00
pub mod http {
//! Various HTTP related types
// re-exports
pub use http::header::{HeaderName, HeaderValue};
pub use http::uri::PathAndQuery;
2019-12-05 17:35:43 +00:00
pub use http::{uri, Error, Uri};
2019-03-30 04:13:39 +00:00
pub use http::{Method, StatusCode, Version};
2019-03-26 18:54:35 +00:00
2019-03-30 04:13:39 +00:00
pub use crate::cookie::{Cookie, CookieBuilder};
pub use crate::header::HeaderMap;
2019-03-26 18:54:35 +00:00
/// Various http headers
pub mod header {
pub use crate::header::*;
}
pub use crate::header::ContentEncoding;
pub use crate::message::ConnectionType;
}
2019-12-02 11:33:11 +00:00
/// Http protocol
#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)]
pub enum Protocol {
Http1,
Http2,
}