1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#[macro_use]
mod r#macro;
pub mod epoch;
pub mod primitive;
pub mod receipt;
#[cfg(test)]
pub mod tests;
pub mod transaction;
use std::error::Error;
use bytes::Bytes;
use derive_more::{Display, From};
use crate::{ProtocolError, ProtocolErrorKind, ProtocolResult};
pub trait FixedCodec: Sized {
fn encode_fixed(&self) -> ProtocolResult<Bytes>;
fn decode_fixed(bytes: Bytes) -> ProtocolResult<Self>;
}
#[derive(Debug, Display, From)]
pub enum FixedCodecError {
Decoder(rlp::DecoderError),
StringUTF8(std::string::FromUtf8Error),
#[display(fmt = "wrong bytes of bool")]
DecodeBool,
#[display(fmt = "wrong bytes of u8")]
DecodeUint8,
}
impl Error for FixedCodecError {}
impl From<FixedCodecError> for ProtocolError {
fn from(err: FixedCodecError) -> ProtocolError {
ProtocolError::new(ProtocolErrorKind::FixedCodec, Box::new(err))
}
}