Trait serde_json::de::Read[][src]

pub trait Read<'de>: Sealed { }

Trait used by the deserializer for iterating over input. This is manually “specialized” for iterating over &u8. Once feature(specialization) is stable we can use actual specialization.

This trait is sealed and cannot be implemented for types outside of serde_json.

Implementations on Foreign Types

impl<'a, 'de, R> Read<'de> for &'a mut R where
    R: Read<'de>, 
[src]

Loading content...

Implementors

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

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

impl<'de, R> Read<'de> for IoRead<R> where
    R: Read
[src]

Loading content...