[][src]Struct tarpc_lib::client::WithRequest

pub struct WithRequest<C, F> { /* fields omitted */ }

A Client that applies a pre-processing function to the request.

Trait Implementations

impl<'a, C, F, Req, Req2, Resp> Client<'a, Req2> for WithRequest<C, F> where
    C: Client<'a, Req, Response = Resp>,
    F: FnMut(Req2) -> Req, 
[src]

type Response = Resp

The response type.

type Future = <C as Client<'a, Req>>::Future

The future response.

fn map_response<F, R>(self, f: F) -> MapResponse<Self, F> where
    F: FnMut(Self::Response) -> R,
    Self: Sized
[src]

Returns a Client that applies a post-processing function to the returned response.

fn with_request<F, Req2>(self, f: F) -> WithRequest<Self, F> where
    F: FnMut(Req2) -> Req,
    Self: Sized
[src]

Returns a Client that applies a pre-processing function to the request.

impl<C: Clone, F: Clone> Clone for WithRequest<C, F>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<C: Debug, F: Debug> Debug for WithRequest<C, F>[src]

Auto Trait Implementations

impl<C, F> Send for WithRequest<C, F> where
    C: Send,
    F: Send

impl<C, F> Sync for WithRequest<C, F> where
    C: Sync,
    F: Sync

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<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> Borrow<T> for T where
    T: ?Sized
[src]

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

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