pub type BlockReceiptsResult<N, E> = Result<Option<Vec<RpcReceipt<N>>>, E>;
Expand description
Result type of the fetched block receipts.
Aliased Type§
pub enum BlockReceiptsResult<N, E> {
Ok(Option<Vec<<N as RpcTypes>::Receipt>>),
Err(E),
}
Variants§
Ok(Option<Vec<<N as RpcTypes>::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.