pub type BlockAndReceiptsResult<E> = Result<Option<(SealedBlock, Arc<Vec<Receipt>>)>, E>;
Expand description
Result type of the fetched block and its receipts.
Aliased Type§
enum BlockAndReceiptsResult<E> {
Ok(Option<(SealedBlock, Arc<Vec<Receipt>>)>),
Err(E),
}
Variants§
Ok(Option<(SealedBlock, Arc<Vec<Receipt>>)>)
Contains the success value
Err(E)
Contains the error value
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.