[][src]Struct grpc::StreamingRequest

pub struct StreamingRequest<T: Send + 'static>(pub GrpcStream<T>);

Excluding initial metadata which is passed separately

Methods

impl<T: Send + 'static> StreamingRequest<T>[src]

pub fn new<S>(stream: S) -> StreamingRequest<T> where
    S: Stream<Item = T, Error = Error> + Send + 'static, 
[src]

pub fn once(item: T) -> StreamingRequest<T>[src]

pub fn iter<I>(iter: I) -> StreamingRequest<T> where
    I: IntoIterator<Item = T>,
    I::IntoIter: Send + 'static, 
[src]

pub fn single(item: T) -> StreamingRequest<T>[src]

pub fn empty() -> StreamingRequest<T>[src]

pub fn err(err: Error) -> StreamingRequest<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for StreamingRequest<T>

impl<T> Send for StreamingRequest<T>

impl<T> !Sync for StreamingRequest<T>

impl<T> Unpin for StreamingRequest<T>

impl<T> !UnwindSafe for StreamingRequest<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.