Struct Receipt

Source
pub struct Receipt<T = Log> {
    pub status: Eip658Value,
    pub cumulative_gas_used: u64,
    pub logs: Vec<T>,
}
Expand description

Receipt containing result of transaction execution.

Fields§

§status: Eip658Value

If transaction is executed successfully.

This is the statusCode

§cumulative_gas_used: u64

Gas used

§logs: Vec<T>

Log send from contracts.

Implementations§

Source§

impl<T> Receipt<T>

Source

pub fn map_logs<U>(self, f: impl FnMut(T) -> U) -> Receipt<U>

Converts the receipt’s log type by applying a function to each log.

Returns the receipt with the new log type

Source§

impl<T> Receipt<T>
where T: AsRef<Log>,

Source

pub fn bloom_slow(&self) -> Bloom

Calculates Log’s bloom filter. this is slow operation and ReceiptWithBloom can be used to cache this value.

Source

pub fn with_bloom(self) -> ReceiptWithBloom<Self>

Calculates the bloom filter for the receipt and returns the ReceiptWithBloom container type.

Source§

impl<T> Receipt<T>
where T: Into<Log>,

Source

pub fn into_primitives_receipt(self) -> Receipt<Log>

Converts a Receipt with a custom log type into a Receipt with the primitives Log type by converting the logs.

This is useful if log types that embed the primitives log type, e.g. the log receipt rpc type.

Source§

impl<T: Encodable> Receipt<T>

Source

pub fn rlp_encoded_fields_length_with_bloom(&self, bloom: &Bloom) -> usize

Returns length of RLP-encoded receipt fields with the given Bloom without an RLP header.

Source

pub fn rlp_encode_fields_with_bloom(&self, bloom: &Bloom, out: &mut dyn BufMut)

RLP-encodes receipt fields with the given Bloom without an RLP header.

Source

pub fn rlp_header_with_bloom(&self, bloom: &Bloom) -> Header

Returns RLP header for this receipt encoding with the given Bloom.

Source§

impl<T: Decodable> Receipt<T>

Source

pub fn rlp_decode_fields_with_bloom( buf: &mut &[u8], ) -> Result<ReceiptWithBloom<Self>>

RLP-decodes receipt’s field with a Bloom.

Does not expect an RLP header.

Trait Implementations§

Source§

impl<'arbitrary, T: Arbitrary<'arbitrary>> Arbitrary<'arbitrary> for Receipt<T>

Source§

fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>

Generate an arbitrary value of Self from the given unstructured data. Read more
Source§

fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>

Generate an arbitrary value of Self from the entirety of the given unstructured data. Read more
Source§

fn size_hint(depth: usize) -> (usize, Option<usize>)

Get a size hint for how many bytes out of an Unstructured this type needs to construct itself. Read more
Source§

fn try_size_hint( depth: usize, ) -> Result<(usize, Option<usize>), MaxRecursionReached>

Get a size hint for how many bytes out of an Unstructured this type needs to construct itself. Read more
Source§

impl<T: Clone> Clone for Receipt<T>

Source§

fn clone(&self) -> Receipt<T>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T: Debug> Debug for Receipt<T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T: Default> Default for Receipt<T>

Source§

fn default() -> Receipt<T>

Returns the “default value” for a type. Read more
Source§

impl<'de, T> Deserialize<'de> for Receipt<T>
where T: Deserialize<'de>,

Source§

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<'de, T: Deserialize<'de> + Clone> DeserializeAs<'de, Receipt<T>> for Receipt<'de, T>

Available on crate features serde and serde-bincode-compat only.
Source§

fn deserialize_as<D>(deserializer: D) -> Result<Receipt<T>, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer.
Source§

impl<'a, T: Clone> From<&'a Receipt<T>> for Receipt<'a, T>

Available on crate features serde and serde-bincode-compat only.
Source§

fn from(value: &'a Receipt<T>) -> Self

Converts to this type from the input type.
Source§

impl<'a, T: Clone> From<Receipt<'a, T>> for Receipt<T>

Available on crate features serde and serde-bincode-compat only.
Source§

fn from(value: Receipt<'a, T>) -> Self

Converts to this type from the input type.
Source§

impl<T> From<ReceiptWithBloom<Receipt<T>>> for Receipt<T>

Source§

fn from(receipt_with_bloom: ReceiptWithBloom<Self>) -> Self

Consume the structure, returning only the receipt

Source§

impl<T: PartialEq> PartialEq for Receipt<T>

Source§

fn eq(&self, other: &Receipt<T>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T: Decodable> RlpDecodableReceipt for Receipt<T>

Source§

fn rlp_decode_with_bloom(buf: &mut &[u8]) -> Result<ReceiptWithBloom<Self>>

RLP decodes receipt and Bloom into ReceiptWithBloom instance.
Source§

impl<T: Encodable> RlpEncodableReceipt for Receipt<T>

Source§

fn rlp_encoded_length_with_bloom(&self, bloom: &Bloom) -> usize

Returns the length of the receipt payload with the provided bloom filter.
Source§

fn rlp_encode_with_bloom(&self, bloom: &Bloom, out: &mut dyn BufMut)

RLP encodes the receipt with the provided bloom filter.
Source§

impl<T> Serialize for Receipt<T>
where T: Serialize,

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<T: Serialize + Clone> SerializeAs<Receipt<T>> for Receipt<'_, T>

Available on crate features serde and serde-bincode-compat only.
Source§

fn serialize_as<S>( source: &Receipt<T>, serializer: S, ) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer.
Source§

impl<T> TxReceipt for Receipt<T>
where T: AsRef<Log> + Clone + Debug + PartialEq + Eq + Send + Sync,

Source§

type Log = T

The associated log type.
Source§

fn status_or_post_state(&self) -> Eip658Value

Returns the status or post state of the transaction. Read more
Source§

fn status(&self) -> bool

Returns true if the transaction was successful OR if the transaction is pre-EIP-658. Results for transactions before EIP-658 are not reliable. Read more
Source§

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) -> u64

Returns the cumulative gas used in the block after this transaction was executed.
Source§

fn logs(&self) -> &[Self::Log]

Returns the logs emitted by this transaction.
Source§

fn bloom_cheap(&self) -> Option<Bloom>

Returns the bloom filter for the logs in the receipt, if it is cheap to compute.
Source§

fn with_bloom_ref(&self) -> ReceiptWithBloom<&Self>

Returns ReceiptWithBloom with the computed bloom filter Self::bloom and a reference to the receipt.
Source§

fn into_with_bloom(self) -> ReceiptWithBloom<Self>

Consumes the type and converts it into ReceiptWithBloom with the computed bloom filter Self::bloom and the receipt.
Source§

impl<T: Eq> Eq for Receipt<T>

Source§

impl<T> StructuralPartialEq for Receipt<T>

Auto Trait Implementations§

§

impl<T> Freeze for Receipt<T>

§

impl<T> RefUnwindSafe for Receipt<T>
where T: RefUnwindSafe,

§

impl<T> Send for Receipt<T>
where T: Send,

§

impl<T> Sync for Receipt<T>
where T: Sync,

§

impl<T> Unpin for Receipt<T>
where T: Unpin,

§

impl<T> UnwindSafe for Receipt<T>
where T: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 56 bytes