op_alloy_network::primitives

Enum BlockTransactions

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§

§

impl<T> BlockTransactions<T>

pub const fn is_hashes(&self) -> bool

Check if the enum variant is used for hashes.

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

Fallibly cast to a slice of hashes.

pub const fn is_full(&self) -> bool

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

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

Fallibly cast to a slice of transactions.

Returns None if the enum variant is not Full.

pub const fn is_uncle(&self) -> bool

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

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.

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.

pub const fn uncle() -> BlockTransactions<T>

Returns an instance of BlockTransactions with the Uncle special case.

pub fn len(&self) -> usize

Returns the number of transactions.

pub fn is_empty(&self) -> bool

Whether the block has no transactions.

§

impl<T> BlockTransactions<T>

pub fn convert_to_hashes(&mut self)

Converts self into Hashes.

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

Converts self into Hashes.

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

👎Deprecated: use hashes instead

Returns an iterator over the transaction hashes.

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

Returns an iterator over references to the transaction hashes.

Trait Implementations§

§

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

§

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
§

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

§

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

Formats the value using the given formatter. Read more
§

impl<T> Default for BlockTransactions<T>

§

fn default() -> BlockTransactions<T>

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

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

§

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
§

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

§

fn from(hashes: Vec<FixedBytes<32>>) -> BlockTransactions<T>

Converts to this type from the input type.
§

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

§

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

Converts to this type from the input type.
§

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

§

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

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

§

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
§

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

§

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
§

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

§

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.

§

impl<T> Instrument for T

§

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

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

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

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

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

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
§

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

§

impl<T> RpcObject for T
where T: RpcParam + RpcReturn,

§

impl<T> RpcParam for T
where T: Serialize + Clone + Debug + Send + Sync + Unpin,

§

impl<T> RpcReturn for T
where T: DeserializeOwned + Debug + Send + Sync + Unpin + 'static,

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