cuprate_database

Type Alias DbResult

Source
pub type DbResult<T> = Result<T, RuntimeError>;
Expand description

Result with RuntimeError as the error.

Aliased Type§

enum DbResult<T> {
    Ok(T),
    Err(RuntimeError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(RuntimeError)

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.