Skip to main content

BlockTransactions

Enum BlockTransactions 

Source
pub enum BlockTransactions<T> {
    Full(Vec<T>),
    Hashes(Vec<B256>),
    Uncle,
}
Expand description

Representation of the transactions field in block JSON-RPC responses.

Full corresponds to a block requested with full transactions, Hashes to a block requested with transaction hashes, and Uncle to the omitted transaction field in uncle responses. Default is an empty Hashes value, not an empty Full value. With Serde, the representation is untagged and an empty JSON array deserializes as Full([]), so that ambiguous case does not preserve which request form produced it.

Variants§

§

Full(Vec<T>)

Full transactions

§

Hashes(Vec<B256>)

Only hashes

§

Uncle

Special case for uncle response.

Implementations§

Source§

impl<T> BlockTransactions<T>

Source

pub const fn is_hashes(&self) -> bool

Check if the enum variant is used for hashes.

Source

pub fn as_hashes(&self) -> Option<&[B256]>

Fallibly cast to a slice of hashes.

Source

pub fn first_transaction(&self) -> Option<&T>

Returns the first transaction if the transactions are full.

Source

pub const fn is_full(&self) -> bool

Returns true if the enum variant is used for full transactions.

Source

pub fn map<U>(self, f: impl FnMut(T) -> U) -> BlockTransactions<U>

Converts the transaction type by applying a function to each transaction.

The function is called only for Self::Full; hash and uncle representations pass through unchanged.

Source

pub fn try_map<U, E>( self, f: impl FnMut(T) -> Result<U, E>, ) -> Result<BlockTransactions<U>, E>

Converts the transaction type by applying a fallible function to each transaction.

The function is called only for Self::Full; hash and uncle representations pass through unchanged.

Source

pub fn as_transactions(&self) -> Option<&[T]>

Fallibly cast to a slice of transactions.

Returns None if the enum variant is not Full.

Source

pub fn calculate_transactions_root(&self) -> Option<B256>
where T: Encodable2718,

Calculates a transaction root from the ordered EIP-2718 encodings of full transactions.

Returns None for other representations. This does not compare the result against a block header.

Source

pub const fn is_uncle(&self) -> bool

Returns true if the enum variant is used for an uncle response.

Source

pub fn txns(&self) -> impl Iterator<Item = &T>

Returns an iterator over the transactions (if any). This will be empty if the block is an uncle or if the transaction list contains only hashes.

Use Self::try_into_transactions when those representations should be treated as an error instead of an empty collection.

Source

pub fn into_transactions(self) -> IntoIter<T>

Returns an iterator over the transactions (if any). This will be empty if the block is not full.

Use Self::try_into_transactions to preserve the distinction between a full empty block and a non-full representation.

Source

pub fn into_transactions_vec(self) -> Vec<T>

Consumes the type and returns the transactions as a vector.

Hash and uncle representations are collapsed to an empty vector. Use Self::try_into_transactions when that distinction matters.

Source

pub fn try_into_transactions(self) -> Result<Vec<T>, ValueError<Self>>

Attempts to unwrap the Self::Full variant.

Returns an error retaining the original representation for hash and uncle variants.

Source

pub const fn uncle() -> Self

Returns an instance of BlockTransactions with the Uncle special case.

Source

pub const fn len(&self) -> usize

Returns the number of transactions.

Source

pub const fn is_empty(&self) -> bool

Whether the block has no transactions.

Source§

impl<T: TransactionResponse> BlockTransactions<T>

Source

pub fn new_hashes(txs: impl IntoIterator<Item = impl AsRef<T>>) -> Self

Creates a new BlockTransactions::Hashes variant from the given iterator of transactions.

Source

pub fn convert_to_hashes(&mut self)

Converts full transactions to same-order hashes.

Existing hashes are unchanged. Self::Uncle is normalized to an empty hash list, losing the omitted-field representation.

Source

pub fn convert_to_hashes_if(&mut self, condition: bool)

Converts self into Hashes if the given condition is true.

Source

pub fn into_hashes(self) -> Self

Converts full transactions to same-order hashes.

Existing hashes are unchanged. Self::Uncle is normalized to an empty hash list, losing the omitted-field representation.

Source

pub fn into_hashes_if(self, condition: bool) -> Self

Converts self into Hashes if the given condition is true.

Source

pub fn hashes(&self) -> BlockTransactionHashes<'_, T>

Returns transaction hashes by value.

Stored hashes are copied, full transactions use TransactionResponse::tx_hash, and Self::Uncle yields an empty iterator.

Source

pub fn into_hashes_vec(self) -> Vec<B256>

Consumes the type and returns the hashes as a vector.

Note: if this is an uncle this will return an empty vector.

Trait Implementations§

Source§

impl<T: Clone> Clone for BlockTransactions<T>

Source§

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

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl<T: Debug> Debug for BlockTransactions<T>

Source§

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

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

impl<T> Default for BlockTransactions<T>

Source§

fn default() -> Self

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

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

Available on crate feature serde only.
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<T: Eq> Eq for BlockTransactions<T>

Source§

impl<T> From<Vec<FixedBytes<32>>> for BlockTransactions<T>

Source§

fn from(hashes: Vec<B256>) -> Self

Converts to this type from the input type.
Source§

impl<T: TransactionResponse> From<Vec<T>> for BlockTransactions<T>

Source§

fn from(transactions: Vec<T>) -> Self

Converts to this type from the input type.
Source§

impl<T: PartialEq> PartialEq for BlockTransactions<T>

Source§

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

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

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

Inequality operator !=. Read more
Source§

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

Available on crate feature serde only.
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: PartialEq> StructuralPartialEq for BlockTransactions<T>

Auto Trait Implementations§

§

impl<T> Freeze for BlockTransactions<T>

§

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

§

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

§

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

§

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

§

impl<T> UnsafeUnpin for BlockTransactions<T>

§

impl<T> UnwindSafe for BlockTransactions<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, dest: *mut u8)

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

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

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

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: 32 bytes

Size for each variant:

  • Full: 24 bytes
  • Hashes: 24 bytes
  • Uncle: 0 bytes