Crate rlp_decoder

Crate rlp_decoder 

Source
Expand description

Recursive Length Prefix serialization crate.

Allows decoding, and view onto rlp-slice

§What should you use when?

§Use decode function when:

  • You want to decode something inline.
  • You do not work on big set of data.
  • You want to decode whole rlp at once.

§Use Rlp when:

  • You need to handle data corruption errors.
  • You are working on input data.
  • You want to get view onto rlp-slice.
  • You don’t want to decode whole rlp at once.

Structs§

PayloadInfo
Stores basic information about item
Rlp
Data-oriented view onto rlp-slice.
RlpIterator
Iterator over rlp-slice list elements.

Enums§

DecoderError
Error concerning the RLP decoder.
Prototype
RLP prototype

Constants§

EMPTY_LIST_RLP
The RLP encoded empty list.
NULL_RLP
The RLP encoded empty data (used to mean “null value”).

Traits§

Decodable
RLP decodable trait

Functions§

decode
Shortcut function to decode trusted rlp
decode_list