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

41 lines
1.0 KiB
Rust
Raw Normal View History

use std::task::{Context, Poll};
use actix_service::{Service, ServiceFactory};
2020-12-23 02:28:17 +01:00
use futures_util::future::{ready, 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-12-02 12:33:11 +01:00
type Config = ();
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
2020-12-23 02:28:17 +01:00
fn new_service(&self, _: Self::Config) -> Self::Future {
ready(Ok(ExpectHandler))
2019-04-06 01:46:44 +02:00
}
}
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
2019-12-07 19:46:51 +01: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 {
2020-12-23 02:28:17 +01:00
ready(Ok(req))
// TODO: add some way to trigger error
// Err(error::ErrorExpectationFailed("test"))
2019-04-06 01:46:44 +02:00
}
}