type Result<T> = Result<T, KvDatabaseError>;
enum Result<T> { Ok(T), Err(KvDatabaseError), }
Contains the success value
Contains the error value