Function rlp::decode

source ·
pub fn decode<T>(bytes: &[u8]) -> Twhere
    T: Decodable,
Expand description

Shortcut function to decode trusted rlp

extern crate rlp;

fn main () {
	let data = vec![0x83, b'c', b'a', b't'];
	let animal: String = rlp::decode(&data);
	assert_eq!(animal, "cat".to_owned());
}