into_response_derive 0.2.0

a simple into response derive for axum
Documentation
1
2
3
4
5
6
7
8
9
10
a simple proc macro for Axum IntoResponse trait

```rust
#[derive(Serialize, Deserialize, IntoResponse, Debug)]

pub struct ErrorResponse {
    pub code: String,
    pub msg: String,
    pub errors: Vec<ErrorResponse>,
}
```