data_at in RLP.

This commit is contained in:
Gav Wood 2015-11-30 15:01:43 +01:00
parent 972b78d47b
commit ddd0baa70a
1 changed files with 4 additions and 0 deletions

View File

@ -227,6 +227,10 @@ impl<'a> Rlp<'a> {
From::from(self.rlp.at(index).unwrap())
}
pub fn data_at(&self, _index: usize) -> &[u8] {
unimplemented!();
}
/// No value
///
/// ```rust