Ignore fields in `#[derive(IntoResponses)]`?
Hello,
I have various response types that implement axum::response::IntoResponse (manually) and derive utoipa::IntoResponses.
These types contain fields which are used to build the response in the IntoResponse implementation, but they aren't part of the response body (e.g. data for custom headers). #[derive(utoipa::IntoResponses)] will however interpret them like that, and I couldn't find an attribute in the documentation that lets me skip/ignore fields... This is especially annoying for types which simply don't implement ToSchema, and then cause errors in the generated schema. I also can't give them a different type with #[schema(value_type = …)], as it seems that isn't available for the IntoResponses derive macro?
Is there a solution to this I'm missing, or is this simply not implemented?