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