pub struct DecoderImpl<P: Primitive, H>where
H: Decodable<P>,{ /* private fields */ }
Implementations§
Trait Implementations§
Source§impl<P: Clone + Primitive, H> Clone for DecoderImpl<P, H>
impl<P: Clone + Primitive, H> Clone for DecoderImpl<P, H>
Source§fn clone(&self) -> DecoderImpl<P, H>
fn clone(&self) -> DecoderImpl<P, H>
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<P: Primitive, H> Decoder<H> for DecoderImpl<P, H>where
H: Decodable<P>,
impl<P: Primitive, H> Decoder<H> for DecoderImpl<P, H>where
H: Decodable<P>,
fn decode_limited(&self, bytes: &[u8], limit: usize) -> CoreResult<Vec<H>>
fn decode(&self, bytes: &[u8]) -> CoreResult<Vec<Output>>
Auto Trait Implementations§
impl<P, H> Freeze for DecoderImpl<P, H>
impl<P, H> RefUnwindSafe for DecoderImpl<P, H>where
P: RefUnwindSafe,
H: RefUnwindSafe,
impl<P, H> Send for DecoderImpl<P, H>
impl<P, H> Sync for DecoderImpl<P, H>
impl<P, H> Unpin for DecoderImpl<P, H>
impl<P, H> UnwindSafe for DecoderImpl<P, H>where
P: UnwindSafe,
H: 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