Module unpacker

Module unpacker 

Source
Expand description

A module to unpack any value that implements Packable.

The Unpacker trait represents types that can be used to read bytes from it. It can be thought as a no_std friendly alternative to the Read trait.

Structs§

CounterUnpacker
An Unpacker able to keep count of the number of read bytes.
SliceUnpacker
A Unpacker backed by a &mut [u8].

Traits§

Unpacker
A type that can unpack any value that implements Packable.