pub type DatabaseResult<T> = Result<T, Error>;
The result type for database operations.
pub enum DatabaseResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value