Struct WithPosition

Source
pub struct WithPosition<R> { /* private fields */ }
Expand description

Keep a record of the current position.

Constructed through Reader::with_position.

Trait Implementations§

Source§

impl<'de, R> PositionedReader<'de> for WithPosition<R>
where R: Reader<'de>,

Source§

fn pos(&self) -> usize

The exact position of a reader.
Source§

impl<'de, R> Reader<'de> for WithPosition<R>
where R: Reader<'de>,

Source§

type Error = <R as Reader<'de>>::Error

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<R> Freeze for WithPosition<R>
where R: Freeze,

§

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

§

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

§

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

§

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

§

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