A procedural macro to reduce json response boilerplate on actix projects.
Prerequisite for this to work is to define actixweb, serde, serdejson dependencies.
Error
has to be in context where JsonResponder
is implemented. Either use actix_web::Error
or implement your own Error
enum. Simple example shown below:
```rust
extern crate actixjsonresponder;
use serde::Serialize; use actix_web::{web, App, HttpServer, Error};
struct HelloStruct { title: String, }
async fn index() -> Result
async fn main() -> std::io::Result<()> { HttpServer::new(|| App::new() .service(web::resource("/index.html").to(index))) .bind("127.0.0.1:8888")? .run() .await } ``` Working example is in example directory.
Distributed under the terms of MIT license and Apache license.