pub struct SimpleSliceDeserializer<'a> { /* private fields */ }
Expand description
This struct implements a simple data deserializer. It is the counterpart of
the SimpleDataSerializer
trait.
The template parameter E is the type used to define the type of the error that will compose the results. The actual value of E is defined by the constructor.
Implementations§
Trait Implementations§
Source§impl<'a> SimpleDataDeserializer for SimpleSliceDeserializer<'a>
impl<'a> SimpleDataDeserializer for SimpleSliceDeserializer<'a>
Auto Trait Implementations§
impl<'a> Freeze for SimpleSliceDeserializer<'a>
impl<'a> RefUnwindSafe for SimpleSliceDeserializer<'a>
impl<'a> Send for SimpleSliceDeserializer<'a>
impl<'a> Sync for SimpleSliceDeserializer<'a>
impl<'a> Unpin for SimpleSliceDeserializer<'a>
impl<'a> UnwindSafe for SimpleSliceDeserializer<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more