Struct dsmr5::Reader[][src]

pub struct Reader<T: Iterator<Item = u8>> { /* fields omitted */ }

A blocking Iterator that parses a bytestreaming Iterator to Readouts.

Implementations

impl<T: Iterator<Item = u8>> Reader<T>[src]

pub fn new(stream: T) -> Self[src]

Trait Implementations

impl<T: Iterator<Item = u8>> Iterator for Reader<T>[src]

type Item = Readout

The type of the elements being iterated over.

fn next(&mut self) -> Option<Self::Item>[src]

Generates Readout by blocking on the underlying byte iterator until a full Readout was passed.

Will ignore all bytes until the first Readout is spotted.

Auto Trait Implementations

impl<T> Send for Reader<T> where
    T: Send
[src]

impl<T> Sync for Reader<T> where
    T: Sync
[src]

impl<T> Unpin for Reader<T> where
    T: Unpin
[src]

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<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, 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.