1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-11 01:39:33 +00:00
actix-web/src/lib.rs

116 lines
2.8 KiB
Rust
Raw Normal View History

2019-03-02 19:53:05 +00:00
#![allow(clippy::type_complexity)]
2019-03-02 06:51:32 +00:00
mod app;
2019-03-03 08:57:48 +00:00
pub mod extractor;
2019-03-02 06:51:32 +00:00
pub mod handler;
// mod info;
pub mod blocking;
pub mod filter;
2017-12-27 03:59:41 +00:00
pub mod middleware;
2019-03-02 06:51:32 +00:00
mod request;
mod resource;
mod responder;
mod route;
mod service;
mod state;
2019-03-03 00:24:14 +00:00
pub mod test;
2019-03-02 06:51:32 +00:00
// re-export for convenience
pub use actix_http::Response as HttpResponse;
pub use actix_http::{http, Error, HttpMessage, ResponseError};
pub use crate::app::App;
2019-03-03 08:57:48 +00:00
pub use crate::extractor::{Form, Json, Path, PayloadConfig, Query};
2019-03-02 06:51:32 +00:00
pub use crate::handler::FromRequest;
pub use crate::request::HttpRequest;
pub use crate::resource::Resource;
pub use crate::responder::{Either, Responder};
pub use crate::route::Route;
2019-03-02 06:51:32 +00:00
pub use crate::service::{ServiceRequest, ServiceResponse};
pub use crate::state::State;
2018-07-29 06:43:04 +00:00
pub mod web {
use actix_http::{http::Method, Error, Response};
use futures::IntoFuture;
use crate::handler::{AsyncFactory, Factory, FromRequest};
use crate::responder::Responder;
use crate::Route;
pub fn route<P: 'static>() -> Route<P> {
Route::new()
}
pub fn get<P: 'static>() -> Route<P> {
Route::get()
}
pub fn post<P: 'static>() -> Route<P> {
Route::post()
}
pub fn put<P: 'static>() -> Route<P> {
Route::put()
}
pub fn delete<P: 'static>() -> Route<P> {
Route::delete()
}
pub fn head<P: 'static>() -> Route<P> {
Route::new().method(Method::HEAD)
}
pub fn method<P: 'static>(method: Method) -> Route<P> {
Route::new().method(method)
}
/// Create a new route and add handler.
///
/// ```rust
/// use actix_web::{web, App, HttpResponse};
///
/// fn index() -> HttpResponse {
/// unimplemented!()
/// }
///
/// App::new().resource("/", |r| r.route(web::to(index)));
/// ```
pub fn to<F, I, R, P: 'static>(handler: F) -> Route<P>
where
F: Factory<I, R> + 'static,
I: FromRequest<P> + 'static,
R: Responder + 'static,
{
Route::new().to(handler)
}
/// Create a new route and add async handler.
///
/// ```rust
/// use actix_web::{web, App, HttpResponse, Error};
///
/// fn index() -> impl futures::Future<Item=HttpResponse, Error=Error> {
/// futures::future::ok(HttpResponse::Ok().finish())
/// }
///
/// App::new().resource("/", |r| r.route(web::to_async(index)));
/// ```
pub fn to_async<F, I, R, P: 'static>(handler: F) -> Route<P>
where
F: AsyncFactory<I, R>,
I: FromRequest<P> + 'static,
R: IntoFuture + 'static,
R::Item: Into<Response>,
R::Error: Into<Error>,
{
Route::new().to_async(handler)
}
}
2017-12-07 01:06:40 +00:00
pub mod dev {
2019-03-02 19:53:05 +00:00
pub use crate::app::AppRouter;
2019-03-02 06:51:32 +00:00
pub use crate::handler::{AsyncFactory, Extract, Factory, Handle};
// pub use crate::info::ConnectionInfo;
2018-03-31 00:31:18 +00:00
}