Skip to main content

Block

Struct Block 

Source
pub struct Block<T, H = Header> {
    pub header: H,
    pub body: BlockBody<T, H>,
}
Expand description

Ethereum full block.

Withdrawals can be optionally included at the end of the RLP encoded message.

Taken from reth-primitives

See p2p block encoding reference: https://github.com/ethereum/devp2p/blob/master/caps/eth.md#block-encoding-and-validity

Fields§

§header: H

Block header.

§body: BlockBody<T, H>

Block body.

Implementations§

Source§

impl<T: Decodable, H: Decodable> Block<T, H>

Source

pub fn decode_sealed(buf: &mut &[u8]) -> Result<Sealed<Self>>

Decodes the block from RLP, computing the header hash directly from the RLP bytes.

This is more efficient than decoding the block and then sealing it, as the header hash is computed from the raw RLP bytes without re-encoding.

Source§

impl<T, H> Block<T, H>

Source

pub const fn new(header: H, body: BlockBody<T, H>) -> Self

Creates a new block with the given header and body.

Source

pub fn uncle(header: H) -> Self

Creates a new empty uncle block.

Source

pub fn into_header(self) -> H

Consumes the block and returns the header.

Source

pub fn into_body(self) -> BlockBody<T, H>

Consumes the block and returns the body.

Source

pub fn map_header<U>(self, f: impl FnMut(H) -> U) -> Block<T, U>

Converts the block’s header type by applying a function to it.

Source

pub fn try_map_header<U, E>( self, f: impl FnMut(H) -> Result<U, E>, ) -> Result<Block<T, U>, E>

Converts the block’s header type by applying a fallible function to it.

Source

pub fn convert_transactions<U>(self) -> Block<U, H>
where U: From<T>,

Converts the block’s transaction type to the given alternative that is From<T>

Source

pub fn try_convert_transactions<U>(self) -> Result<Block<U, H>, U::Error>
where U: TryFrom<T>,

Converts the block’s transaction to the given alternative that is TryFrom<T>

Returns the block with the new transaction type if all conversions were successful.

Source

pub fn map_transactions<U>(self, f: impl FnMut(T) -> U) -> Block<U, H>

Converts the block’s transaction type by applying a function to each transaction.

Returns the block with the new transaction type.

Source

pub fn try_map_transactions<U, E>( self, f: impl FnMut(T) -> Result<U, E>, ) -> Result<Block<U, H>, E>

Converts the block’s 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 into_with_encoded2718(self) -> Block<WithEncoded<T>, H>
where T: Encodable2718,

Converts the transactions in the block’s body to WithEncoded<T> by encoding them via Encodable2718

Source

pub fn with_header(self, header: H) -> Self

Replaces the header of the block.

Note: This method only replaces the main block header. If you need to transform the ommer headers as well, use map_header instead.

Source

pub fn rlp_encoded_from_parts(header: &H, body: &BlockBody<T, H>) -> Vec<u8>
where H: Encodable, T: Encodable,

Encodes the Block given header and block body.

Returns the rlp encoded block.

This is equivalent to block.encode.

Source

pub fn rlp_encode_from_parts( header: &H, body: &BlockBody<T, H>, out: &mut dyn BufMut, )
where H: Encodable, T: Encodable,

Encodes the Block given header and block body

This is equivalent to block.encode.

Source

pub fn rlp_length_for(header: &H, body: &BlockBody<T, H>) -> usize
where H: Encodable, T: Encodable,

Returns the RLP encoded length of the block’s header and body.

Source§

impl<T: Encodable2718> Block<T, Header>

Source

pub fn from_transactions( header: Header, transactions: impl IntoIterator<Item = T>, ) -> Self

Creates a new block from a header and an iterator of transactions.

Computes and sets the transactions_root on the header automatically. ommers_hash is set to EMPTY_OMMER_ROOT_HASH.

Trait Implementations§

Source§

impl<'a, T, H> Arbitrary<'a> for Block<T, H>
where T: Arbitrary<'a>, H: Arbitrary<'a>,

Available on crate features arbitrary only.
Source§

fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self>

Generate an arbitrary value of Self from the given unstructured data. Read more
Source§

fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self, Error>

Generate an arbitrary value of Self from the entirety of the given unstructured data. Read more
Source§

fn size_hint(depth: usize) -> (usize, Option<usize>)

Get a size hint for how many bytes out of an Unstructured this type needs to construct itself. Read more
Source§

fn try_size_hint( depth: usize, ) -> Result<(usize, Option<usize>), MaxRecursionReached>

Get a size hint for how many bytes out of an Unstructured this type needs to construct itself. Read more
Source§

impl<T, H> BorshDeserialize for Block<T, H>

Source§

fn deserialize_reader<__R: Read>(reader: &mut __R) -> Result<Self, Error>

Source§

fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>

Deserializes this instance from a given slice of bytes. Updates the buffer to point at the remaining bytes.
Source§

fn try_from_slice(v: &[u8]) -> Result<Self, Error>

Deserialize this instance from a slice of bytes.
Source§

fn try_from_reader<R>(reader: &mut R) -> Result<Self, Error>
where R: Read,

Source§

impl<T, H> BorshSerialize for Block<T, H>

Source§

fn serialize<__W: Write>(&self, writer: &mut __W) -> Result<(), Error>

Source§

impl<T: Clone, H: Clone> Clone for Block<T, H>

Source§

fn clone(&self) -> Block<T, H>

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, H: Debug> Debug for Block<T, H>

Source§

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

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

impl<T: Decodable, H: Decodable> Decodable for Block<T, H>

Source§

fn decode(b: &mut &[u8]) -> Result<Self>

Decodes the blob into the appropriate type. buf must be advanced past the decoded object.
Source§

impl<T, H> Default for Block<T, H>
where H: Default,

Source§

fn default() -> Self

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

impl<T, H> Deref for Block<T, H>

Source§

type Target = H

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl<'de, T, H> Deserialize<'de> for Block<T, H>
where T: Deserialize<'de>, H: 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: Encodable, H: Encodable> Encodable for Block<T, H>

Source§

fn encode(&self, out: &mut dyn BufMut)

Encodes the type into the out buffer.
Source§

fn length(&self) -> usize

Returns the length of the encoding of this type in bytes. Read more
Source§

impl<T: Eq, H: Eq> Eq for Block<T, H>

Source§

impl<T, H> EthBlock for Block<T, H>

Source§

fn withdrawals(&self) -> Option<&Withdrawals>

Returns reference to withdrawals in the block if present
Source§

impl<T, H> From<Block<T, H>> for BlockBody<T, H>

Source§

fn from(block: Block<T, H>) -> Self

Converts to this type from the input type.
Source§

impl<T: InMemorySize, H: InMemorySize> InMemorySize for Block<T, H>

Source§

fn size(&self) -> usize

Returns a heuristic for the in-memory size of a struct.
Source§

impl<T: PartialEq, H: PartialEq> PartialEq for Block<T, H>

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · 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, H> Serialize for Block<T, H>
where T: Serialize, H: 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, H> StructuralPartialEq for Block<T, H>

Auto Trait Implementations§

§

impl<T, H> Freeze for Block<T, H>
where H: Freeze,

§

impl<T, H> RefUnwindSafe for Block<T, H>

§

impl<T, H> Send for Block<T, H>
where H: Send, T: Send,

§

impl<T, H> Sync for Block<T, H>
where H: Sync, T: Sync,

§

impl<T, H> Unpin for Block<T, H>
where H: Unpin, T: Unpin,

§

impl<T, H> UnsafeUnpin for Block<T, H>
where H: UnsafeUnpin,

§

impl<T, H> UnwindSafe for Block<T, H>
where H: UnwindSafe, 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<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
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> 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: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.