type BackendResult<T = ()> = Result<T, Error>;
Shorthand result used internally by the backend
enum BackendResult<T = ()> { Ok(T), Err(Error), }
Contains the success value
Contains the error value