[][src]Struct tokio_proto::util::client_proxy::ClientProxy

pub struct ClientProxy<R, S, E> { /* fields omitted */ }

Client Service for pipeline or multiplex protocols

Trait Implementations

impl<R, S, E> Clone for ClientProxy<R, S, E>[src]

impl<R, S, E> Debug for ClientProxy<R, S, E> where
    R: Debug,
    S: Debug,
    E: Debug
[src]

impl<R, S, E: From<Error>> Service for ClientProxy<R, S, E>[src]

type Request = R

Requests handled by the service.

type Response = S

Responses given by the service.

type Error = E

Errors produced by the service.

type Future = Response<S, E>

The future response value.

Auto Trait Implementations

impl<R, S, E> !RefUnwindSafe for ClientProxy<R, S, E>

impl<R, S, E> Send for ClientProxy<R, S, E> where
    E: Send,
    R: Send,
    S: Send

impl<R, S, E> !Sync for ClientProxy<R, S, E>

impl<R, S, E> Unpin for ClientProxy<R, S, E>

impl<R, S, E> !UnwindSafe for ClientProxy<R, S, E>

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.