[][src]Struct ublox::ParserIter

pub struct ParserIter<'a> { /* fields omitted */ }

Iterator over data stored in Parser buffer

Implementations

impl<'a> ParserIter<'a>[src]

pub fn next(&mut self) -> Option<Result<PacketRef<'_>, ParserError>>[src]

Analog of core::iter::Iterator::next, should be switched to trait implmentation after merge of https://github.com/rust-lang/rust/issues/44265

Trait Implementations

impl<'a> Drop for ParserIter<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for ParserIter<'a>

impl<'a> Send for ParserIter<'a>

impl<'a> Sync for ParserIter<'a>

impl<'a> Unpin for ParserIter<'a>

impl<'a> !UnwindSafe for ParserIter<'a>

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.