1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-02-12 08:05:34 +01:00
actix-web/actix-http/src/h1/upgrade.rs

33 lines
892 B
Rust
Raw Normal View History

2019-04-08 14:51:16 -07:00
use actix_codec::Framed;
use actix_service::{Service, ServiceFactory};
use futures_core::future::LocalBoxFuture;
2019-04-08 14:51:16 -07:00
use crate::{h1::Codec, Error, Request};
2019-04-08 14:51:16 -07:00
pub struct UpgradeHandler;
2019-04-08 14:51:16 -07:00
impl<T> ServiceFactory<(Request, Framed<T, Codec>)> for UpgradeHandler {
2019-04-08 14:51:16 -07:00
type Response = ();
type Error = Error;
type Config = ();
type Service = UpgradeHandler;
2019-04-08 14:51:16 -07:00
type InitError = Error;
type Future = LocalBoxFuture<'static, Result<Self::Service, Self::InitError>>;
2019-04-08 14:51:16 -07:00
2019-12-02 21:37:13 +06:00
fn new_service(&self, _: ()) -> Self::Future {
2019-04-08 14:51:16 -07:00
unimplemented!()
}
}
impl<T> Service<(Request, Framed<T, Codec>)> for UpgradeHandler {
2019-04-08 14:51:16 -07:00
type Response = ();
type Error = Error;
type Future = LocalBoxFuture<'static, Result<Self::Response, Self::Error>>;
2019-04-08 14:51:16 -07:00
actix_service::always_ready!();
2019-04-08 14:51:16 -07:00
fn call(&self, _: (Request, Framed<T, Codec>)) -> Self::Future {
unimplemented!()
2019-04-08 14:51:16 -07:00
}
}