Actix Json Responder Continuous Integration license-badge rust-version-badge

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

Usage

Implementing struct has to be serializable. Example shown in tests and below: ```rust

[macro_use]

extern crate actixjsonresponder;

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

[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.