1 2 3 4 5
#[derive(Debug, thiserror::Error)] pub enum Error { #[error(transparent)] DecoderError(#[from] rlp::DecoderError), }
1 2 3 4 5
#[derive(Debug, thiserror::Error)] pub enum Error { #[error(transparent)] DecoderError(#[from] rlp::DecoderError), }