[][src]Struct drone_cortex_m::thr::StreamRootWait

pub struct StreamRootWait<'a, T: Stream> { /* fields omitted */ }

An iterator that blocks on values from a stream until they become available.

WARNING The next method will be blocking preempted threads. It is recommended to use this iterator only on the lowest priority thread.

Trait Implementations

impl<'a, T: Stream> FusedIterator for StreamRootWait<'a, T>[src]

impl<'a, T: Stream> Iterator for StreamRootWait<'a, T>[src]

type Item = T::Item

The type of the elements being iterated over.

Auto Trait Implementations

impl<'a, T> Unpin for StreamRootWait<'a, T> where
    T: Unpin

impl<'a, T> Send for StreamRootWait<'a, T> where
    T: Send

impl<'a, T> Sync for StreamRootWait<'a, T> where
    T: Sync

Blanket Implementations

impl<T> From<T> for 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> Into<U> for T where
    U: From<T>, 
[src]

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.

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]