[][src]Struct grpcio::RequestStream

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

A stream for client a streaming call and a duplex streaming call.

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

Trait Implementations

impl<T> Drop for RequestStream<T>[src]

fn drop(&mut self)[src]

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

impl<T> Stream for RequestStream<T>[src]

type Item = T

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<T> !RefUnwindSafe for RequestStream<T>

impl<T> Send for RequestStream<T>

impl<T> Sync for RequestStream<T>

impl<T> Unpin for RequestStream<T>

impl<T> !UnwindSafe for RequestStream<T>

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.