pub type KvResult<T> = Result<T, KvClientError>;Expand description
Result type for KV client operations
Aliased Type§
pub enum KvResult<T> {
Ok(T),
Err(KvClientError),
}pub type KvResult<T> = Result<T, KvClientError>;Result type for KV client operations
pub enum KvResult<T> {
Ok(T),
Err(KvClientError),
}