pub enum ReceiptAny {
Frontier(FrontierReceiptData),
EIP658(EIP658ReceiptData),
EIP2930(EIP2930ReceiptData),
EIP1559(EIP1559ReceiptData),
EIP7702(EIP7702ReceiptData),
}
Variants§
Frontier(FrontierReceiptData)
Frontier receipt type
EIP658(EIP658ReceiptData)
EIP658 receipt type
EIP2930(EIP2930ReceiptData)
EIP-2930 receipt type
EIP1559(EIP1559ReceiptData)
EIP-1559 receipt type
EIP7702(EIP7702ReceiptData)
EIP-7702 receipt type
Trait Implementations§
Source§impl Clone for ReceiptAny
impl Clone for ReceiptAny
Source§fn clone(&self) -> ReceiptAny
fn clone(&self) -> ReceiptAny
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ReceiptAny
impl Debug for ReceiptAny
Source§impl EnvelopedDecodable for ReceiptAny
impl EnvelopedDecodable for ReceiptAny
Source§type PayloadDecoderError = DecoderError
type PayloadDecoderError = DecoderError
Inner payload decoder error.
Source§fn decode(
bytes: &[u8],
) -> Result<Self, EnvelopedDecoderError<Self::PayloadDecoderError>>
fn decode( bytes: &[u8], ) -> Result<Self, EnvelopedDecoderError<Self::PayloadDecoderError>>
Decode raw bytes to a Self type.
Source§impl EnvelopedEncodable for ReceiptAny
impl EnvelopedEncodable for ReceiptAny
Source§impl PartialEq for ReceiptAny
impl PartialEq for ReceiptAny
impl Eq for ReceiptAny
impl StructuralPartialEq for ReceiptAny
Auto Trait Implementations§
impl Freeze for ReceiptAny
impl RefUnwindSafe for ReceiptAny
impl Send for ReceiptAny
impl Sync for ReceiptAny
impl Unpin for ReceiptAny
impl UnwindSafe for ReceiptAny
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more