[][src]Struct grpcio::ClientDuplexReceiver

#[must_use =
  "if unused the ClientDuplexReceiver may immediately cancel the RPC"]pub struct ClientDuplexReceiver<Resp> { /* fields omitted */ }

A response receiver for duplex call.

If the corresponding sink has dropped or cancelled, this will poll a RpcFailure error with the Cancelled status.

Methods

impl<Resp> ClientDuplexReceiver<Resp>[src]

pub fn cancel(&mut self)[src]

Trait Implementations

impl<Resp> Drop for ClientDuplexReceiver<Resp>[src]

fn drop(&mut self)[src]

The corresponding RPC will be canceled if the receiver did not finish before dropping.

impl<Resp> Stream for ClientDuplexReceiver<Resp>[src]

type Item = Resp

The type of item this stream will yield on success.

type Error = Error

The type of error this stream may generate.

Auto Trait Implementations

impl<Resp> !RefUnwindSafe for ClientDuplexReceiver<Resp>

impl<Resp> Send for ClientDuplexReceiver<Resp>

impl<Resp> Sync for ClientDuplexReceiver<Resp>

impl<Resp> Unpin for ClientDuplexReceiver<Resp>

impl<Resp> !UnwindSafe for ClientDuplexReceiver<Resp>

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, 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.