pub type ResponseResult = Result<(), Error>;
Response result
enum ResponseResult { Ok(()), Err(Error), }
Contains the success value
Contains the error value