[][src]Struct transform_stream::Yielder

pub struct Yielder<T> { /* fields omitted */ }

A handle for sending items into the related stream.

Implementations

impl<T> Yielder<T>[src]

pub async fn yield_item<'_>(&'_ mut self, item: T)[src]

Send a item into the related stream.

pub async fn yield_iter<I, '_>(&'_ mut self, iter: I) where
    I: IntoIterator<Item = T>, 
[src]

Send items into the related stream.

impl<T, E> Yielder<Result<T, E>>[src]

pub async fn yield_ok<'_>(&'_ mut self, value: T)[src]

Send Ok(value) into the related stream.

pub async fn yield_ok_iter<I, '_>(&'_ mut self, iter: I) where
    I: IntoIterator<Item = T>, 
[src]

Send ok values into the related stream.

Trait Implementations

impl<T: Debug> Debug for Yielder<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for Yielder<T>

impl<T> Send for Yielder<T> where
    T: Send + Sync

impl<T> Sync for Yielder<T> where
    T: Send + Sync

impl<T> Unpin for Yielder<T>

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