A (de)serializer for RLP encoding in ETH

Cargo.toml

serlp = "0.1.4" serde = { version = "1.0", features = ['derive'] }

Not Supported Types

We do not support enum when deserializing because we lost some information (i.e. variant index) about the original value when serializing.

We have to choose this approach because there is no enums in Golang while ETH is written in go. Treating enums as a transparent layer can make our furture implementation compatiable with ETH.

Example code

You can find more examples here

```rust use serlp::{de::frombytes, ser::tobytes}; use serde::{Serialize, Deserialize}; use serde_bytes;

[derive(Serialize, Debug, PartialEq, Eq, Deserialize)]

struct Third { inner: T }

[derive(Serialize, Debug, PartialEq, Eq, Deserialize)]

struct Embeding<'a> { tag: &'a str, ed: Embedded, #[serde(with = "serde_bytes")] bytes: Vec }

[derive(Serialize, Debug, PartialEq, Eq, Deserialize)]

struct Embedded { time: u64, out: (u8, i32), three: Third<((), ((),), ((), ((),)))> }

fn main() { let embed = Embeding { tag: "This is a tooooooooooooo loooooooooooooooooooong tag", ed: Embedded { time: 114514, out: (191, -9810), three: Third { inner: ((), ((),), ((), ((),))) } }, bytes: "哼.啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊".asbytes().tovec() };

let encode = to_bytes(&embed).unwrap();
let origin: Embeding = from_bytes(&encode).unwrap();

println!("encode result: {:?}", encode);

assert_eq!(origin, embed);

} ```

Design principle

Accroding to the ETH Yellow Paper, all supported data structure can be represented with either recursive list of byte arrays or byte arrays . So we can transform all Rust's compound types, for example, tuple, struct and list, into lists. And then encode them as exactly described in the paper

For example, the structure in example code, can be internally treated as the following form:

[ "This is a tooooooooooooo loooooooooooooooooooong tag", [ 114514, [191, -9810], [ [[], [[]], [[], [[]]]] ] ], "哼.啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊" ]