macro_rules! impl_to_responses_for_wrapper {
($ty:path) => { ... };
}Expand description
Generate ToResponses implementation for newtype.
Inner type should implement ToMediaTypes.
ยงExample
struct JsonWrapper<T>(T);
impl_to_responses_for_wrapper!(JsonWrapper<T>);