[rust-server] can't handle duplicate response descriptions
Created by: bjgill
Description
See https://github.com/swagger-api/swagger-codegen/issues/8169#issuecomment-388858171. rust-server
currently has a heuristic where if a response description is provided, we use that to construct the name of the enum variant for that response. This clearly fails when we have multiple responses with the same description, however.
I'm not sure there is going to be a good way to solve this. Perhaps we could detect this particular failure case and bail out of the heuristic? As I remember, the fallback is to use e.g. Response_201
instead, which is resilient to this problem.