Struct IoRead

Source
pub struct IoRead<R>
where R: Read,
{ /* private fields */ }
Expand description

A wrapper to implement this crate’s Read trait for std::io::Read trait implementations.

Implementations§

Source§

impl<R> IoRead<R>
where R: Read,

Source

pub fn new(reader: R) -> Self

Instantiates a new reader.

§Performance

It is strongly recommended to use a BufReader or a similar type (which buffers read data in-memory) as the reader argument. See BufReader’s documentation for more information.

Trait Implementations§

Source§

impl<R> Debug for IoRead<R>
where R: Read + Debug,

Source§

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

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

impl<'a, R> Read<'a> for IoRead<R>
where R: Read,

Source§

fn next(&mut self) -> Option<Result<u8>>

Consumes and returns the next read byte.
Source§

fn peek(&mut self) -> Option<Result<u8>>

Returns the next byte but does not consume. Read more
Source§

fn byte_offset(&self) -> usize

Returns the position in the stream of bytes.
Source§

fn parse_byte_str<'b>( &'b mut self, buf: &'b mut Vec<u8>, ) -> Result<Ref<'a, 'b, [u8]>>

Returns the next slice of data for the given length. Read more
Source§

fn parse_raw_integer<'b>( &'b mut self, buf: &'b mut Vec<u8>, ) -> Result<Ref<'a, 'b, [u8]>>

Consumes and returns the next integer raw encoding. Read more
Source§

fn parse_raw_byte_str<'b>( &mut self, buf: &'b mut Vec<u8>, ) -> Result<Ref<'a, 'b, [u8]>>

Consumes and returns the next byte string raw encoding. Read more
Source§

fn parse_raw_list<'b>( &'b mut self, buf: &'b mut Vec<u8>, ) -> Result<Ref<'a, 'b, [u8]>>

Consumes and returns the next list raw encoding. Read more
Source§

fn parse_raw_dict<'b>( &'b mut self, buf: &'b mut Vec<u8>, ) -> Result<Ref<'a, 'b, [u8]>>

Consumes and returns the next dictionary raw encoding. Read more

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

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

§

impl<R> UnwindSafe for IoRead<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.