Function rlp::decode [] [src]

pub fn decode<T>(bytes: &[u8]) -> T where
    T: Decodable

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());
}