[][src]Struct bitbuffer::LazyBitRead

pub struct LazyBitRead<T: BitRead<E>, E: Endianness> { /* fields omitted */ }

Struct that lazily reads it's contents from the stream

Methods

impl<T: BitRead<E>, E: Endianness> LazyBitRead<T, E>[src]

pub fn read(self) -> Result<T>[src]

Get the contents of the lazy struct

Trait Implementations

impl<T: BitRead<E>, E: Endianness> BitRead<E> for LazyBitRead<T, E>[src]

impl<T: Clone + BitRead<E>, E: Clone + Endianness> Clone for LazyBitRead<T, E>[src]

impl<T: Debug + BitRead<E>, E: Debug + Endianness> Debug for LazyBitRead<T, E>[src]

Auto Trait Implementations

impl<T, E> !RefUnwindSafe for LazyBitRead<T, E>

impl<T, E> !Send for LazyBitRead<T, E>

impl<T, E> !Sync for LazyBitRead<T, E>

impl<T, E> Unpin for LazyBitRead<T, E> where
    E: Unpin,
    T: Unpin

impl<T, E> UnwindSafe for LazyBitRead<T, E> where
    E: UnwindSafe,
    T: 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<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.