Procedural macros for generating default actix_web::Responder
implementation for a custom serialization.
Currently supported formats are:
1. JSON
2. Bincode
3. XML
```rust
struct JsonResponse { name: String, } ```
```rust
struct XMLResponse { name: String, } ```
```rust
struct BincodeResponse { name: String, } ```