Struct serde_json::de::SliceRead[][src]

pub struct SliceRead<'a> { /* fields omitted */ }
Expand description

JSON input source that reads from a slice of bytes.

Implementations

impl<'a> SliceRead<'a>[src]

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

Create a JSON input source to read from a slice of bytes.

Trait Implementations

impl<'a> Read<'a> for SliceRead<'a>[src]

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

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

fn discard(&mut self)[src]

fn position(&self) -> Position[src]

fn peek_position(&self) -> Position[src]

fn byte_offset(&self) -> usize[src]

fn parse_str<'s>(
    &'s mut self,
    scratch: &'s mut Vec<u8>
) -> Result<Reference<'a, 's, str>>
[src]

fn parse_str_raw<'s>(
    &'s mut self,
    scratch: &'s mut Vec<u8>
) -> Result<Reference<'a, 's, [u8]>>
[src]

fn ignore_str(&mut self) -> Result<()>[src]

fn decode_hex_escape(&mut self) -> Result<u16>[src]

const should_early_return_if_failed: bool[src]

fn set_failed(&mut self, _failed: &mut bool)[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for SliceRead<'a>

impl<'a> Send for SliceRead<'a>

impl<'a> Sync for SliceRead<'a>

impl<'a> Unpin for SliceRead<'a>

impl<'a> UnwindSafe for SliceRead<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

Performs the conversion.