Struct bitbuffer::LazyBitReadSized
source · [−]pub struct LazyBitReadSized<'a, T: BitReadSized<'a, E>, E: Endianness> { /* private fields */ }Expand description
Struct that lazily reads it’s contents from the stream
Implementations
sourceimpl<'a, T: BitReadSized<'a, E>, E: Endianness> LazyBitReadSized<'a, T, E>
impl<'a, T: BitReadSized<'a, E>, E: Endianness> LazyBitReadSized<'a, T, E>
Trait Implementations
sourceimpl<'a, T: BitReadSized<'a, E>, E: Endianness> BitReadSized<'a, E> for LazyBitReadSized<'a, T, E>
impl<'a, T: BitReadSized<'a, E>, E: Endianness> BitReadSized<'a, E> for LazyBitReadSized<'a, T, E>
sourceimpl<'a, T: Clone + BitReadSized<'a, E>, E: Clone + Endianness> Clone for LazyBitReadSized<'a, T, E>
impl<'a, T: Clone + BitReadSized<'a, E>, E: Clone + Endianness> Clone for LazyBitReadSized<'a, T, E>
sourcefn clone(&self) -> LazyBitReadSized<'a, T, E>
fn clone(&self) -> LazyBitReadSized<'a, T, E>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl<'a, T: Debug + BitReadSized<'a, E>, E: Debug + Endianness> Debug for LazyBitReadSized<'a, T, E>
impl<'a, T: Debug + BitReadSized<'a, E>, E: Debug + Endianness> Debug for LazyBitReadSized<'a, T, E>
Auto Trait Implementations
impl<'a, T, E> !RefUnwindSafe for LazyBitReadSized<'a, T, E>
impl<'a, T, E> !Send for LazyBitReadSized<'a, T, E>
impl<'a, T, E> !Sync for LazyBitReadSized<'a, T, E>
impl<'a, T, E> Unpin for LazyBitReadSized<'a, T, E> where
E: Unpin,
T: Unpin,
impl<'a, T, E> UnwindSafe for LazyBitReadSized<'a, T, E> where
E: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more