Type Alias reth::transaction_pool::error::PoolResult

source ·
pub type PoolResult<T> = Result<T, PoolError>;
Expand description

Transaction pool result type.

Aliased Type§

enum PoolResult<T> {
    Ok(T),
    Err(PoolError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(PoolError)

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.