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