Skip to main content

IoDecoder

Struct IoDecoder 

Source
pub struct IoDecoder<R: Read> { /* private fields */ }
Available on crate feature std only.
Expand description

Streaming decoder that reads directly from any Read-shaped source.

Each IoDecoder::read call may issue many small reads against the underlying source. Wrap raw sockets / files in std::io::BufReader first if read-syscall amplification is a concern.

§Examples

use pack_io::{IoEncoder, IoDecoder};
use std::io::Cursor;

let mut buf: Vec<u8> = Vec::new();
{
    let mut enc = IoEncoder::new(&mut buf);
    enc.write(&42_u64).unwrap();
    enc.write(&"hi").unwrap();
}

let mut dec = IoDecoder::new(Cursor::new(buf));
let n: u64 = dec.read().unwrap();
let s: String = dec.read().unwrap();
assert_eq!((n, s.as_str()), (42, "hi"));

Implementations§

Source§

impl<R: Read> IoDecoder<R>

Source

pub fn new(reader: R) -> Self

Wrap reader with the default Config.

Source

pub fn with_config(reader: R, config: Config) -> Result<Self>

Wrap reader with the supplied configuration.

§Errors

Returns SerialError::InvalidLength if config.max_alloc == 0.

Source

pub fn reader(&self) -> &R

Borrow the underlying reader.

Source

pub fn into_inner(self) -> R

Consume the decoder and return the underlying reader.

Source

pub fn read<T: Deserialize>(&mut self) -> Result<T>

Decode the next value from the underlying reader.

§Errors

Trait Implementations§

Source§

impl<R: Debug + Read> Debug for IoDecoder<R>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<R: Read> Decode for IoDecoder<R>

Source§

fn read_byte(&mut self) -> Result<u8>

Read the next byte, advancing the cursor. Read more
Source§

fn read_into(&mut self, out: &mut [u8]) -> Result<()>

Fill out with exactly out.len() bytes, advancing the cursor. Read more
Source§

fn max_alloc(&self) -> usize

Maximum number of bytes the decoder will allocate for a single length-prefixed value. Mirrors Config::max_alloc.
Source§

fn read_varint_u64(&mut self) -> Result<u64>

Read a LEB128 varint as a u64. Read more
Source§

fn read_varint_u128(&mut self) -> Result<u128>

Read a LEB128 varint as a u128. Read more
Source§

fn read_length_prefixed(&mut self) -> Result<Vec<u8>>

Read a length-prefixed byte run, allocating a fresh Vec<u8>. Read more

Auto Trait Implementations§

§

impl<R> Freeze for IoDecoder<R>
where R: Freeze,

§

impl<R> RefUnwindSafe for IoDecoder<R>
where R: RefUnwindSafe,

§

impl<R> Send for IoDecoder<R>
where R: Send,

§

impl<R> Sync for IoDecoder<R>
where R: Sync,

§

impl<R> Unpin for IoDecoder<R>
where R: Unpin,

§

impl<R> UnsafeUnpin for IoDecoder<R>
where R: UnsafeUnpin,

§

impl<R> UnwindSafe for IoDecoder<R>
where R: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.