1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-28 18:02:39 +01:00
actix-web/actix-http/src/h1/expect.rs

40 lines
985 B
Rust
Raw Normal View History

use std::task::{Context, Poll};
2019-05-12 17:34:51 +02:00
use actix_server_config::ServerConfig;
use actix_service::{Service, ServiceFactory};
use futures::future::{ok, Ready};
2019-04-06 01:46:44 +02:00
use crate::error::Error;
use crate::request::Request;
pub struct ExpectHandler;
impl ServiceFactory for ExpectHandler {
2019-05-12 17:34:51 +02:00
type Config = ServerConfig;
2019-04-06 01:46:44 +02:00
type Request = Request;
type Response = Request;
type Error = Error;
type Service = ExpectHandler;
type InitError = Error;
type Future = Ready<Result<Self::Service, Self::InitError>>;
2019-04-06 01:46:44 +02:00
2019-05-12 17:34:51 +02:00
fn new_service(&self, _: &ServerConfig) -> Self::Future {
2019-04-06 01:46:44 +02:00
ok(ExpectHandler)
}
}
impl Service for ExpectHandler {
type Request = Request;
type Response = Request;
type Error = Error;
type Future = Ready<Result<Self::Response, Self::Error>>;
2019-04-06 01:46:44 +02:00
fn poll_ready(&mut self, _: &mut Context) -> Poll<Result<(), Self::Error>> {
Poll::Ready(Ok(()))
2019-04-06 01:46:44 +02:00
}
fn call(&mut self, req: Request) -> Self::Future {
ok(req)
}
}