[][src]Struct tarpc::rpc::client::channel::Channel

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

Handles communication from the client to request dispatch.

Implementations

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

pub fn call(&mut self, ctx: Context, request: Req) -> Call<'_, Req, Resp>

Notable traits for Call<'a, Req, Resp>

impl<'a, Req, Resp> Future for Call<'a, Req, Resp> type Output = Result<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.

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

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

Auto Trait Implementations

impl<Req, Resp> !RefUnwindSafe for Channel<Req, Resp>[src]

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

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

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

impl<Req, Resp> !UnwindSafe for Channel<Req, Resp>[src]

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,