pub type Result<T> = Result<T, KvError>;
A Result type alias using KvError.
Result
KvError
pub enum Result<T> { Ok(T), Err(KvError), }
Contains the success value
Contains the error value