Function tetsy_rlp::decode[][src]

pub fn decode<T>(bytes: &[u8]) -> Result<T, DecoderError> where
    T: Decodable
Expand description

Shortcut function to decode trusted rlp

let data = vec![0x83, b'c', b'a', b't'];
let animal: String = tetsy_rlp::decode(&data).expect("could not decode");
assert_eq!(animal, "cat".to_owned());