pub struct AnyReceiptEnvelope<T = Log> {
pub inner: ReceiptWithBloom<T>,
pub type: u8,
}
Expand description
Receipt envelope, as defined in EIP-2718.
This enum distinguishes between tagged and untagged legacy receipts, as the
in-protocol Merkle tree may commit to EITHER 0-prefixed or raw. Therefore
we must ensure that encoding returns the precise byte-array that was
decoded, preserving the presence or absence of the TransactionType
flag.
Transaction receipt payloads are specified in their respective EIPs.
Fields§
§inner: ReceiptWithBloom<T>
The receipt envelope.
type: u8
The transaction type.
Implementations§
Source§impl<T> AnyReceiptEnvelope<T>where
T: Encodable,
impl<T> AnyReceiptEnvelope<T>where
T: Encodable,
Sourcepub fn rlp_payload_length(&self) -> usize
pub fn rlp_payload_length(&self) -> usize
Calculate the length of the rlp payload of the network encoded receipt.
Source§impl<T> AnyReceiptEnvelope<T>
impl<T> AnyReceiptEnvelope<T>
Sourcepub const fn is_success(&self) -> bool
pub const fn is_success(&self) -> bool
Sourcepub const fn cumulative_gas_used(&self) -> u128
pub const fn cumulative_gas_used(&self) -> u128
Returns the cumulative gas used at this receipt.
Trait Implementations§
Source§impl<T: Clone> Clone for AnyReceiptEnvelope<T>
impl<T: Clone> Clone for AnyReceiptEnvelope<T>
Source§fn clone(&self) -> AnyReceiptEnvelope<T>
fn clone(&self) -> AnyReceiptEnvelope<T>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<T: Debug> Debug for AnyReceiptEnvelope<T>
impl<T: Debug> Debug for AnyReceiptEnvelope<T>
Source§impl Decodable2718 for AnyReceiptEnvelope
impl Decodable2718 for AnyReceiptEnvelope
Source§fn typed_decode(ty: u8, buf: &mut &[u8]) -> Eip2718Result<Self>
fn typed_decode(ty: u8, buf: &mut &[u8]) -> Eip2718Result<Self>
Decode the appropriate variant, based on the type flag. Read more
Source§fn fallback_decode(buf: &mut &[u8]) -> Eip2718Result<Self>
fn fallback_decode(buf: &mut &[u8]) -> Eip2718Result<Self>
Decode the default variant. Read more
Source§fn extract_type_byte(buf: &mut &[u8]) -> Option<u8>
fn extract_type_byte(buf: &mut &[u8]) -> Option<u8>
Extract the type byte from the buffer, if any. The type byte is the
first byte, provided that that first byte is 0x7f or lower.
Source§fn decode_2718(buf: &mut &[u8]) -> Result<Self, Eip2718Error>
fn decode_2718(buf: &mut &[u8]) -> Result<Self, Eip2718Error>
Source§fn network_decode(buf: &mut &[u8]) -> Result<Self, Eip2718Error>
fn network_decode(buf: &mut &[u8]) -> Result<Self, Eip2718Error>
Source§impl<'de, T> Deserialize<'de> for AnyReceiptEnvelope<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for AnyReceiptEnvelope<T>where
T: Deserialize<'de>,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Encodable2718 for AnyReceiptEnvelope
impl Encodable2718 for AnyReceiptEnvelope
Source§fn encode_2718_len(&self) -> usize
fn encode_2718_len(&self) -> usize
The length of the 2718 encoded envelope. This is the length of the type
flag + the length of the inner encoding.
Source§fn encode_2718(&self, out: &mut dyn BufMut)
fn encode_2718(&self, out: &mut dyn BufMut)
Source§fn encoded_2718(&self) -> Vec<u8> ⓘ
fn encoded_2718(&self) -> Vec<u8> ⓘ
Encode the transaction according to [EIP-2718] rules. First a 1-byte
type flag in the range 0x0-0x7f, then the body of the transaction. Read more
Source§fn trie_hash(&self) -> FixedBytes<32>
fn trie_hash(&self) -> FixedBytes<32>
Compute the hash as committed to in the MPT trie. This hash is used
ONLY by the Ethereum merkle-patricia trie and associated proofs. Do not
call this method unless you are building a full or light client. Read more
Source§fn network_len(&self) -> usize
fn network_len(&self) -> usize
The length of the 2718 encoded envelope in network format. This is the
length of the header + the length of the type flag and inner encoding.
Source§fn network_encode(&self, out: &mut dyn BufMut)
fn network_encode(&self, out: &mut dyn BufMut)
Encode in the network format. The network format is used ONLY by the
Ethereum p2p protocol. Do not call this method unless you are building
a p2p protocol client. Read more
Source§impl<T: PartialEq> PartialEq for AnyReceiptEnvelope<T>
impl<T: PartialEq> PartialEq for AnyReceiptEnvelope<T>
Source§impl<T> Serialize for AnyReceiptEnvelope<T>where
T: Serialize,
impl<T> Serialize for AnyReceiptEnvelope<T>where
T: Serialize,
Source§impl<T> TxReceipt<T> for AnyReceiptEnvelope<T>
impl<T> TxReceipt<T> for AnyReceiptEnvelope<T>
Source§fn status_or_post_state(&self) -> Eip658Value
fn status_or_post_state(&self) -> Eip658Value
Returns the status or post state of the transaction. Read more
Source§fn bloom(&self) -> Bloom
fn bloom(&self) -> Bloom
Returns the bloom filter for the logs in the receipt. This operation
may be expensive.
Source§fn cumulative_gas_used(&self) -> u128
fn cumulative_gas_used(&self) -> u128
Returns the cumulative gas used in the block after this transaction was executed.
Source§fn bloom_cheap(&self) -> Option<Bloom>
fn bloom_cheap(&self) -> Option<Bloom>
Returns the bloom filter for the logs in the receipt, if it is cheap to
compute.
impl<T: Eq> Eq for AnyReceiptEnvelope<T>
impl<T> StructuralPartialEq for AnyReceiptEnvelope<T>
Auto Trait Implementations§
impl<T> Freeze for AnyReceiptEnvelope<T>
impl<T> RefUnwindSafe for AnyReceiptEnvelope<T>where
T: RefUnwindSafe,
impl<T> Send for AnyReceiptEnvelope<T>where
T: Send,
impl<T> Sync for AnyReceiptEnvelope<T>where
T: Sync,
impl<T> Unpin for AnyReceiptEnvelope<T>where
T: Unpin,
impl<T> UnwindSafe for AnyReceiptEnvelope<T>where
T: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)