Protobuf payload extractor for Actix Web.
```rust,ignore use actixprotobuf::*; use actixweb::*;
pub struct MyObj { #[prost(int32, tag = "1")] pub number: i32,
#[prost(string, tag = "2")]
pub name: String,
}
async fn index(msg: ProtoBuf
See here for the complete example.
This project is licensed under either of
at your option.