Protobuf support for actix-web framework.
```rust,ignore use actixweb::*; use actixprotobuf::*; use futures::Future;
pub struct MyObj { #[prost(int32, tag="1")] pub number: i32, #[prost(string, tag="2")] pub name: String, }
fn index(req: HttpRequest) -> BoxError
.andthen(|val: MyObj| {
println!("model: {:?}", val);
Ok(httpcodes::HTTPOk.build().protobuf(val)?) // <- send response
})
.responder()
}
```
This project is licensed under either of
at your option.