BlockTransactions

Enum BlockTransactions 

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

Block Transactions depending on the boolean attribute of eth_getBlockBy*, or if used by eth_getUncle*

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.

Returns the block with the new transaction type.

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.

Returns the block with the new transaction type if all transactions were successfully.

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,

Calculate the transaction root for the full transactions.

Returns None if this is not the BlockTransactions::Full variant

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.

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.

Source

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

Consumes the type and returns the transactions as a vector.

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

Source

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

Attempts to unwrap the Self::Full variant.

Returns an error if the type is different variant.

Source

pub const fn uncle() -> Self

Returns an instance of BlockTransactions with the Uncle special case.

Source

pub fn len(&self) -> usize

Returns the number of transactions.

Source

pub 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 self into Hashes.

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 self into Hashes.

Source

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

Converts self into Hashes if the given condition is true.

Source

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

👎Deprecated: use hashes instead

Returns an iterator over the transaction hashes.

Source

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

Returns an iterator over references to the transaction hashes.

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

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

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> Serialize for BlockTransactions<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: Eq> Eq for BlockTransactions<T>

Source§

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

Size for each variant:

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