Type Alias reth::providers::errors::provider::ProviderResult

pub type ProviderResult<Ok> = Result<Ok, ProviderError>;
Expand description

Provider result type.

Aliased Type§

enum ProviderResult<Ok> {
    Ok(Ok),
    Err(ProviderError),
}

Variants§

§1.0.0

Ok(Ok)

Contains the success value

§1.0.0

Err(ProviderError)

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.