Type Alias valkey_module::ValkeyValueResult
source · pub type ValkeyValueResult = ValkeyResult<ValkeyValue>;Expand description
A [RedisResult] with ValkeyValue.
Aliased Type§
enum ValkeyValueResult {
Ok(ValkeyValue),
Err(ValkeyError),
}Variants§
Trait Implementations§
source§impl From<ValkeyError> for ValkeyValueResult
impl From<ValkeyError> for ValkeyValueResult
source§fn from(v: ValkeyError) -> Self
fn from(v: ValkeyError) -> Self
Converts to this type from the input type.
source§impl From<ValkeyValue> for ValkeyValueResult
impl From<ValkeyValue> for ValkeyValueResult
source§fn from(v: ValkeyValue) -> Self
fn from(v: ValkeyValue) -> Self
Converts to this type from the input type.