[][src]Struct messagepack_rs::stream::deserializer::Deserializer

pub struct Deserializer<D: Deserializable, R: Read + Seek> { /* fields omitted */ }

Methods

impl<D: Deserializable, R: Read + Seek> Deserializer<D, R>[src]

pub fn new(buf_reader: BufReader<R>) -> Self[src]

Trait Implementations

impl<D: Deserializable, R: Read + Seek> Iterator for Deserializer<D, R>[src]

type Item = Result<(D, u64), Error>

The type of the elements being iterated over.

Auto Trait Implementations

impl<D, R> RefUnwindSafe for Deserializer<D, R> where
    D: RefUnwindSafe,
    R: RefUnwindSafe

impl<D, R> Send for Deserializer<D, R> where
    D: Send,
    R: Send

impl<D, R> Sync for Deserializer<D, R> where
    D: Sync,
    R: Sync

impl<D, R> Unpin for Deserializer<D, R> where
    D: Unpin,
    R: Unpin

impl<D, R> UnwindSafe for Deserializer<D, R> where
    D: UnwindSafe,
    R: UnwindSafe

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.