Function rlp::decode
[−]
[src]
pub fn decode<T>(bytes: &[u8]) -> T where T: RlpDecodable
Shortcut function to decode trusted rlp
extern crate rlp; fn main () { let data = vec![0xc8, 0x83, b'c', b'a', b't', 0x83, b'd', b'o', b'g']; let animals: Vec<String> = rlp::decode(&data); assert_eq!(animals, vec!["cat".to_string(), "dog".to_string()]); }