SliceReader

Struct SliceReader 

Source
pub struct SliceReader<'de> { /* private fields */ }
Expand description

Simple reader that reads from a byte slice.

Implementations§

Source§

impl<'de> SliceReader<'de>

Source

pub fn new(buf: &'de [u8]) -> Self

create a new reader

Source

pub fn rest(&self) -> &'de [u8]

Get the remaining, committed bytes (peeked bytes are not subtracted until consume() is called).

Trait Implementations§

Source§

impl<'de> IoRead<'de> for SliceReader<'de>

Source§

type Error = RError

Error type produced by the reader.
Source§

fn read_slice<'a>( &'a mut self, len: usize, ) -> Result<Reference<'de, 'a>, Self::Error>

read exactly len bytes and consume

Auto Trait Implementations§

§

impl<'de> Freeze for SliceReader<'de>

§

impl<'de> RefUnwindSafe for SliceReader<'de>

§

impl<'de> Send for SliceReader<'de>

§

impl<'de> Sync for SliceReader<'de>

§

impl<'de> Unpin for SliceReader<'de>

§

impl<'de> UnwindSafe for SliceReader<'de>

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.