[][src]Struct simple_proxy::proxy::service::ProxyService

pub struct ProxyService { /* fields omitted */ }

Methods

impl ProxyService[src]

pub fn new(
    middlewares: Arc<Mutex<Vec<Box<dyn Middleware + Send + Sync>>>>,
    remote_addr: SocketAddr
) -> Self
[src]

Trait Implementations

impl IntoFuture for ProxyService[src]

type Future = FutureResult<Self::Item, Self::Error>

The future that this type can be converted into.

type Item = Self

The item that the future may resolve with.

type Error = Error

The error that the future may resolve with.

impl Service for ProxyService[src]

type Error = Error

The error type that can occur within this Service. Read more

type Future = Box<dyn Future<Item = Response<Body>, Error = Error> + Send>

The Future returned by this Service.

type ReqBody = Body

The Payload body of the http::Request.

type ResBody = Body

The Payload body of the http::Response.

fn poll_ready(&mut self) -> Result<Async<()>, Self::Error>[src]

Returns Ready when the service is able to process requests. Read more

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<F> IntoFuture for F where
    F: Future
[src]

type Future = F

The future that this type can be converted into.

type Item = <F as Future>::Item

The item that the future may resolve with.

type Error = <F as Future>::Error

The error that the future may resolve with.

impl<T> Erased for T