TxTy

Trait TxTy 

pub trait TxTy:
    Debug
    + Copy
    + Eq
    + Send
    + Sync
    + InMemorySize
    + Typed2718
    + TryFrom<u8, Error = Eip2718Error>
    + Decodable
    + 'static { }
Expand description

Re-exported ethereum types Helper trait alias with requirements for transaction type generic to be used within Receipt.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

§

impl<T> TxTy for T
where T: Debug + Copy + Eq + Send + Sync + InMemorySize + Typed2718 + TryFrom<u8, Error = Eip2718Error> + Decodable + 'static,