pub type ValkeyValueResult = ValkeyResult<ValkeyValue>;Expand description
A [RedisResult] with ValkeyValue.
Aliased Type§
pub 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.