1/// An error when dealing with the database. 2#[derive(Debug, Clone)] 3pub enum Error<E> { 4 /// An error in the database 5 Database(sled::Error), 6 7 /// An error in the function we're caching 8 Client(E), 9}