Struct SliceReader

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

An efficient Reader wrapper around a slice.

Implementations§

Source§

impl<'de> SliceReader<'de>

Source

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

Construct a new instance around the specified slice.

Trait Implementations§

Source§

impl<'de> Reader<'de> for SliceReader<'de>

Source§

type Error = SliceReaderError

Error type raised by the current reader.
Source§

fn skip(&mut self, n: usize) -> Result<(), Self::Error>

Skip over the given number of bytes.
Source§

fn read_bytes<V>(&mut self, n: usize, visitor: V) -> Result<V::Ok, V::Error>
where V: ValueVisitor<'de, Target = [u8], Error = Self::Error>,

Read a slice out of the current reader.
Source§

fn read(&mut self, buf: &mut [u8]) -> Result<(), Self::Error>

Read a slice into the given buffer.
Source§

fn read_byte(&mut self) -> Result<u8, Self::Error>

Read a single byte.
Source§

fn read_array<const N: usize>(&mut self) -> Result<[u8; N], Self::Error>

Read an array out of the current reader.
Source§

fn with_position(self) -> WithPosition<Self>
where Self: Sized,

Keep an accurate record of the position within the reader.
Source§

fn limit(self, limit: usize) -> Limit<Self>
where Self: Sized,

Keep an accurate record of the position within the reader.

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.