Type Alias reth_nippy_jar::ColumnResult

source ·
pub type ColumnResult<T> = Result<T, Box<dyn StdError + Send + Sync>>;
Expand description

Alias type for a column value wrapped in Result.

Aliased Type§

enum ColumnResult<T> {
    Ok(T),
    Err(Box<dyn Error + Send + Sync>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Box<dyn Error + Send + Sync>)

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.