Type Alias valkey_module::ValkeyResult
source · pub type ValkeyResult<T = ValkeyValue> = Result<T, ValkeyError>;Expand description
A short-hand type that stores a std::result::Result with custom type and [RedisError].
Aliased Type§
enum ValkeyResult<T = ValkeyValue> {
Ok(T),
Err(ValkeyError),
}