alloy_rpc_types_eth

Enum BlockTransactions

Source
pub enum BlockTransactions<T> {
    Full(Vec<T>),
    Hashes(Vec<FixedBytes<32>>),
    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<FixedBytes<32>>)

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<&[FixedBytes<32>]>

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() -> BlockTransactions<T>

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

Source

pub fn convert_to_hashes(&mut self)

Converts self into Hashes.

Source

pub fn into_hashes(self) -> BlockTransactions<T>

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 for BlockTransactions<T>
where T: Clone,

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 for BlockTransactions<T>
where T: Debug,

Source§

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

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

impl<T> Default for BlockTransactions<T>

Source§

fn default() -> BlockTransactions<T>

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<BlockTransactions<T>, <__D as Deserializer<'de>>::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<FixedBytes<32>>) -> BlockTransactions<T>

Converts to this type from the input type.
Source§

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

Source§

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

Converts to this type from the input type.
Source§

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

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 as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

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

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

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