[][src]Struct tarpc_lib::client::channel::Channel

pub struct Channel<Req, Resp> { /* fields omitted */ }

Handles communication from the client to request dispatch.

Methods

impl<Req, Resp> Channel<Req, Resp>[src]

Important traits for Call<'a, Req, Resp>
pub fn call(&mut self, context: Context, request: Req) -> Call<Req, Resp>[src]

Sends a request to the dispatch task to forward to the server, returning a Future that resolves to the response.

Trait Implementations

impl<'a, Req, Resp> Client<'a, Req> for Channel<Req, Resp> where
    Req: 'a,
    Resp: 'a, 
[src]

type Response = Resp

The response type.

type Future = Call<'a, Req, Resp>

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<Req, Resp> Clone for Channel<Req, Resp>[src]

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

Performs copy-assignment from source. Read more

impl<Req: Debug, Resp: Debug> Debug for Channel<Req, Resp>[src]

Auto Trait Implementations

impl<Req, Resp> Send for Channel<Req, Resp> where
    Req: Send,
    Resp: Send

impl<Req, Resp> Sync for Channel<Req, Resp> where
    Req: Send,
    Resp: Send

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]