1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-19 16:58:14 +00:00
actix-web/actix-web/src/lib.rs

148 lines
4.4 KiB
Rust
Raw Normal View History

//! Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust.
2019-03-24 18:47:23 +00:00
//!
2021-06-17 16:57:58 +00:00
//! # Examples
//! ```no_run
//! use actix_web::{get, web, App, HttpServer, Responder};
2019-03-24 18:47:23 +00:00
//!
2022-03-05 23:15:33 +00:00
//! #[get("/hello/{name}")]
//! async fn greet(name: web::Path<String>) -> impl Responder {
//! format!("Hello {}!", name)
2019-03-24 18:47:23 +00:00
//! }
//!
2022-03-05 23:15:33 +00:00
//! #[actix_web::main] // or #[tokio::main]
2019-12-08 06:31:16 +00:00
//! async fn main() -> std::io::Result<()> {
2022-03-05 23:15:33 +00:00
//! HttpServer::new(|| {
//! App::new().service(greet)
//! })
//! .bind(("127.0.0.1", 8080))?
//! .run()
//! .await
2019-03-24 18:47:23 +00:00
//! }
//! ```
//!
2021-06-17 16:57:58 +00:00
//! # Documentation & Community Resources
//! In addition to this API documentation, several other resources are available:
2019-03-24 18:47:23 +00:00
//!
//! * [Website & User Guide](https://actix.rs/)
//! * [Examples Repository](https://github.com/actix/examples)
//! * [Community Chat on Discord](https://discord.gg/NWpN5mmg3x)
2019-03-24 18:47:23 +00:00
//!
//! To get started navigating the API docs, you may consider looking at the following pages first:
2019-03-24 18:47:23 +00:00
//!
//! * [`App`]: This struct represents an Actix Web application and is used to
//! configure routes and other common application settings.
2019-03-24 18:47:23 +00:00
//!
//! * [`HttpServer`]: This struct represents an HTTP server instance and is
//! used to instantiate and configure servers.
2019-03-24 18:47:23 +00:00
//!
//! * [`web`]: This module provides essential types for route registration as well as
//! common utilities for request handlers.
2019-03-30 17:04:38 +00:00
//!
//! * [`HttpRequest`] and [`HttpResponse`]: These
//! structs represent HTTP requests and responses and expose methods for creating, inspecting,
//! and otherwise utilizing them.
2019-03-24 18:47:23 +00:00
//!
2021-06-17 16:57:58 +00:00
//! # Features
//! - Supports HTTP/1.x and HTTP/2
//! - Streaming and pipelining
//! - Powerful [request routing](https://actix.rs/docs/url-dispatch/) with optional macros
//! - Full [Tokio](https://tokio.rs) compatibility
//! - Keep-alive and slow requests handling
//! - Client/server [WebSockets](https://actix.rs/docs/websockets/) support
//! - Transparent content compression/decompression (br, gzip, deflate, zstd)
//! - Multipart streams
//! - Static assets
//! - SSL support using OpenSSL or Rustls
//! - Middlewares ([Logger, Session, CORS, etc](middleware))
//! - Integrates with the [`awc` HTTP client](https://docs.rs/awc/)
//! - Runs on stable Rust 1.54+
2019-03-24 18:47:23 +00:00
//!
2021-06-17 16:57:58 +00:00
//! # Crate Features
//! - `cookies` - cookies support (enabled by default)
//! - `macros` - routing and runtime macros (enabled by default)
//! - `compress-brotli` - brotli content encoding compression support (enabled by default)
//! - `compress-gzip` - gzip and deflate content encoding compression support (enabled by default)
//! - `compress-zstd` - zstd content encoding compression support (enabled by default)
//! - `openssl` - HTTPS support via `openssl` crate, supports `HTTP/2`
//! - `rustls` - HTTPS support via `rustls` crate, supports `HTTP/2`
//! - `secure-cookies` - secure cookies support
2020-12-28 00:44:15 +00:00
#![deny(rust_2018_idioms, nonstandard_style)]
2021-12-08 06:09:56 +00:00
#![warn(future_incompatible)]
#![allow(clippy::uninlined_format_args)]
2020-09-13 02:24:44 +00:00
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]
#![doc(html_favicon_url = "https://actix.rs/favicon.ico")]
2023-02-26 21:55:25 +00:00
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
2020-09-13 02:24:44 +00:00
2023-07-17 01:38:12 +00:00
pub use actix_http::{body, HttpMessage};
#[cfg(feature = "cookies")]
#[doc(inline)]
pub use cookie;
2019-03-02 06:51:32 +00:00
mod app;
mod app_service;
mod config;
2019-03-17 03:17:27 +00:00
mod data;
pub mod dev;
pub mod error;
mod extract;
2019-03-03 20:09:38 +00:00
pub mod guard;
mod handler;
2021-06-17 16:57:58 +00:00
mod helpers;
pub mod http;
mod info;
2017-12-27 03:59:41 +00:00
pub mod middleware;
2022-11-25 21:44:52 +00:00
mod redirect;
2019-03-02 06:51:32 +00:00
mod request;
mod request_data;
2019-03-02 06:51:32 +00:00
mod resource;
mod response;
mod rmap;
2019-03-02 06:51:32 +00:00
mod route;
pub mod rt;
2019-03-04 05:02:01 +00:00
mod scope;
2019-03-05 00:29:03 +00:00
mod server;
2019-03-02 06:51:32 +00:00
mod service;
2019-03-03 00:24:14 +00:00
pub mod test;
pub(crate) mod types;
2019-03-30 17:04:38 +00:00
pub mod web;
2019-03-02 06:51:32 +00:00
#[doc(inline)]
pub use crate::error::Result;
2023-07-17 01:38:12 +00:00
pub use crate::{
app::App,
error::{Error, ResponseError},
extract::FromRequest,
handler::Handler,
request::HttpRequest,
resource::Resource,
response::{CustomizeResponder, HttpResponse, HttpResponseBuilder, Responder},
route::Route,
scope::Scope,
server::HttpServer,
types::Either,
};
macro_rules! codegen_reexport {
($name:ident) => {
#[cfg(feature = "macros")]
pub use actix_web_codegen::$name;
};
}
codegen_reexport!(main);
codegen_reexport!(test);
codegen_reexport!(route);
codegen_reexport!(routes);
codegen_reexport!(head);
codegen_reexport!(get);
codegen_reexport!(post);
codegen_reexport!(patch);
codegen_reexport!(put);
codegen_reexport!(delete);
codegen_reexport!(trace);
codegen_reexport!(connect);
codegen_reexport!(options);
2021-12-04 19:40:47 +00:00
pub(crate) type BoxError = Box<dyn std::error::Error>;