↓ 37 callersMethoditerGet iterator over rlp-slices ```rust extern crate rlp; use rlp::*; fn main () { let data = vec![0xc8, 0x83, b'c', b'a', b't', 0x83, b'd', b'o', b'g'
rlp/src/rlpin.rs:225
↓ 10 callersMethodas_rawThe raw data of the RLP as slice. ```rust extern crate rlp; use rlp::*; fn main () { let data = vec![0xc8, 0x83, b'c', b'a', b't', 0x83, b'd', b'o',
rlp/src/rlpin.rs:57