alloy_network_primitives

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 const fn is_full(&self) -> bool

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

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 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 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 convert_to_hashes(&mut self)

Converts self into Hashes.

source

pub fn into_hashes(self) -> Self

Converts self into Hashes.

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 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 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, dst: *mut T)

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

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

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> 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> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,