openethereum/util/rlp/src/traits.rs

31 lines
885 B
Rust
Raw Normal View History

2017-05-10 12:52:09 +02:00
// Copyright 2015-2017 Parity Technologies
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
2016-02-05 13:40:41 +01:00
2016-01-29 13:59:29 +01:00
//! Common RLP traits
2016-01-27 12:14:57 +01:00
use elastic_array::ElasticArray1024;
use {DecoderError, Rlp, RlpStream};
2015-12-07 23:47:26 +01:00
2016-01-29 13:59:29 +01:00
/// RLP decodable trait
2015-12-07 23:47:26 +01:00
pub trait Decodable: Sized {
2016-01-29 13:59:29 +01:00
/// Decode a value from RLP bytes
fn decode(rlp: &Rlp) -> Result<Self, DecoderError>;
2015-12-07 23:47:26 +01:00
}
/// Structure encodable to RLP
2015-12-07 23:47:26 +01:00
pub trait Encodable {
2016-01-27 12:14:57 +01:00
/// Append a value to the stream
fn rlp_append(&self, s: &mut RlpStream);
/// Get rlp-encoded bytes for this instance
fn rlp_bytes(&self) -> ElasticArray1024<u8> {
let mut s = RlpStream::new();
self.rlp_append(&mut s);
s.drain()
}
2015-12-07 16:32:06 +01:00
}