pub struct LazyBitRead<T: BitRead<E>, E: Endianness> { /* private fields */ }Expand description
Struct that lazily reads it’s contents from the stream
Implementations§
Source§impl<T: BitRead<E>, E: Endianness> LazyBitRead<T, E>
impl<T: BitRead<E>, E: Endianness> LazyBitRead<T, E>
Trait Implementations§
Source§impl<T: BitRead<E>, E: Endianness> BitRead<E> for LazyBitRead<T, E>
impl<T: BitRead<E>, E: Endianness> BitRead<E> for LazyBitRead<T, E>
Source§impl<T: Clone + BitRead<E>, E: Clone + Endianness> Clone for LazyBitRead<T, E>
impl<T: Clone + BitRead<E>, E: Clone + Endianness> Clone for LazyBitRead<T, E>
Source§fn clone(&self) -> LazyBitRead<T, E>
fn clone(&self) -> LazyBitRead<T, E>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<T, E> Freeze for LazyBitRead<T, E>
impl<T, E> RefUnwindSafe for LazyBitRead<T, E>where
T: RefUnwindSafe,
E: RefUnwindSafe,
impl<T, E> !Send for LazyBitRead<T, E>
impl<T, E> !Sync for LazyBitRead<T, E>
impl<T, E> Unpin for LazyBitRead<T, E>
impl<T, E> UnsafeUnpin for LazyBitRead<T, E>
impl<T, E> UnwindSafe for LazyBitRead<T, E>where
T: UnwindSafe,
E: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more