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