Actix Json Responder travis-badge cargo-badge license-badge rust-version-badge

A procedural macro to reduce json response boilerplate on actix projects.

Usage

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

[macro_use]

extern crate actixjsonresponder;

use serde::Serialize; use actix_web::{web, App, HttpServer, Error};

[derive(Serialize, JsonResponder, PartialEq)]

struct HelloStruct { title: String, }

async fn index() -> Result { Ok(HelloStruct { title: "Hello json!".to_string() }) }

[actix_web::main]

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.

License

Distributed under the terms of MIT license and Apache license.