Trait Receipt

Source
pub trait Receipt:
    Send
    + Sync
    + Unpin
    + Clone
    + Debug
    + TxReceipt<Log = Log>
    + RlpEncodableReceipt
    + RlpDecodableReceipt
    + Eip2718EncodableReceipt
    + Typed2718
    + MaybeSerde
    + InMemorySize { }
Expand description

Abstraction of a 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.

Implementations on Foreign Types§

Source§

impl<'a, T: 'a + Receipt + ?Sized> Receipt for &'a T
where &'a T: Send + Sync + Unpin + Clone + Debug + TxReceipt<Log = Log> + RlpEncodableReceipt + RlpDecodableReceipt + Eip2718EncodableReceipt + Typed2718 + MaybeSerde + InMemorySize,

Source§

impl<T: Receipt + ?Sized> Receipt for Arc<T>
where Arc<T>: Send + Sync + Unpin + Clone + Debug + TxReceipt<Log = Log> + RlpEncodableReceipt + RlpDecodableReceipt + Eip2718EncodableReceipt + Typed2718 + MaybeSerde + InMemorySize,

Implementors§