Trait serde_cbor::de::Read

source ·
pub trait Read<'de>: Sealed { }
Expand description

Trait used by the deserializer for iterating over input.

This trait is sealed by default, enabling the unsealed_read_write feature removes this bound to allow objects outside of this crate to implement this trait.

Implementors§

source§

impl<'a> Read<'a> for MutSliceRead<'a>

source§

impl<'a> Read<'a> for SliceRead<'a>

source§

impl<'a, 'b> Read<'a> for SliceReadFixed<'a, 'b>

source§

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