pub struct LazyBitReadSized<T: BitReadSized<E>, E: Endianness> { /* private fields */ }Expand description
Struct that lazily reads it’s contents from the stream
Implementations§
Source§impl<T: BitReadSized<E>, E: Endianness> LazyBitReadSized<T, E>
impl<T: BitReadSized<E>, E: Endianness> LazyBitReadSized<T, E>
Trait Implementations§
Source§impl<T: BitReadSized<E>, E: Endianness> BitReadSized<E> for LazyBitReadSized<T, E>
impl<T: BitReadSized<E>, E: Endianness> BitReadSized<E> for LazyBitReadSized<T, E>
Source§impl<T: Clone + BitReadSized<E>, E: Clone + Endianness> Clone for LazyBitReadSized<T, E>
impl<T: Clone + BitReadSized<E>, E: Clone + Endianness> Clone for LazyBitReadSized<T, E>
Source§fn clone(&self) -> LazyBitReadSized<T, E>
fn clone(&self) -> LazyBitReadSized<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 moreSource§impl<T: Debug + BitReadSized<E>, E: Debug + Endianness> Debug for LazyBitReadSized<T, E>
impl<T: Debug + BitReadSized<E>, E: Debug + Endianness> Debug for LazyBitReadSized<T, E>
Auto Trait Implementations§
impl<T, E> !Freeze for LazyBitReadSized<T, E>
impl<T, E> !RefUnwindSafe for LazyBitReadSized<T, E>
impl<T, E> !Send for LazyBitReadSized<T, E>
impl<T, E> !Sync for LazyBitReadSized<T, E>
impl<T, E> Unpin for LazyBitReadSized<T, E>
impl<T, E> UnsafeUnpin for LazyBitReadSized<T, E>
impl<T, E> UnwindSafe for LazyBitReadSized<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