pub struct ManagedBufferNestedDecodeInput<M>where
M: ManagedTypeApi,{ /* private fields */ }
Expand description
Nested decode buffer based on a managed buffer. Uses the load/copy slice API to extract pieces of the managed buffer for deserialization.
Implementations§
Source§impl<M> ManagedBufferNestedDecodeInput<M>where
M: ManagedTypeApi,
impl<M> ManagedBufferNestedDecodeInput<M>where
M: ManagedTypeApi,
pub fn new(managed_buffer: ManagedBuffer<M>) -> Self
Trait Implementations§
Source§impl<M> NestedDecodeInput for ManagedBufferNestedDecodeInput<M>where
M: ManagedTypeApi,
impl<M> NestedDecodeInput for ManagedBufferNestedDecodeInput<M>where
M: ManagedTypeApi,
Source§fn remaining_len(&self) -> usize
fn remaining_len(&self) -> usize
The remaining length of the input data.
Source§fn peek_into<H>(&mut self, into: &mut [u8], h: H) -> Result<(), H::HandledErr>where
H: DecodeErrorHandler,
fn peek_into<H>(&mut self, into: &mut [u8], h: H) -> Result<(), H::HandledErr>where
H: DecodeErrorHandler,
Read the exact number of bytes required to fill the given buffer, without consuming the underlying bytes. Read more
Source§fn read_into<H>(&mut self, into: &mut [u8], h: H) -> Result<(), H::HandledErr>where
H: DecodeErrorHandler,
fn read_into<H>(&mut self, into: &mut [u8], h: H) -> Result<(), H::HandledErr>where
H: DecodeErrorHandler,
Read & consume the exact number of bytes required to fill the given buffer. Read more
fn supports_specialized_type<T: TryStaticCast>() -> bool
fn read_specialized<T, C, H>( &mut self, context: C, h: H, ) -> Result<T, H::HandledErr>
Source§fn is_depleted(&self) -> bool
fn is_depleted(&self) -> bool
True if all data from the buffer has already been used.
Source§fn read_byte<H>(
&mut self,
h: H,
) -> Result<u8, <H as DecodeErrorHandler>::HandledErr>where
H: DecodeErrorHandler,
fn read_byte<H>(
&mut self,
h: H,
) -> Result<u8, <H as DecodeErrorHandler>::HandledErr>where
H: DecodeErrorHandler,
Read a single byte from the input.
Auto Trait Implementations§
impl<M> Freeze for ManagedBufferNestedDecodeInput<M>
impl<M> RefUnwindSafe for ManagedBufferNestedDecodeInput<M>
impl<M> Send for ManagedBufferNestedDecodeInput<M>
impl<M> Sync for ManagedBufferNestedDecodeInput<M>
impl<M> Unpin for ManagedBufferNestedDecodeInput<M>
impl<M> UnwindSafe for ManagedBufferNestedDecodeInput<M>
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