[−][src]Struct grpc::StreamingRequest
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 = Result<T>> + Send + 'static, [src]
S: Stream<Item = Result<T>> + Send + 'static,
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]
I: IntoIterator<Item = T>,
I::IntoIter: Send + 'static,
pub fn mpsc() -> (StreamingRequestSender<T>, StreamingRequest<T>)[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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,