drk::error

Type Alias WalletDbResult

Source
pub type WalletDbResult<T> = Result<T, WalletDbError>;
Expand description

Result type used in the wallet database module

Aliased Type§

enum WalletDbResult<T> {
    Ok(T),
    Err(WalletDbError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(WalletDbError)

Contains the error value