1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-23 15:51:06 +01:00
actix-extras/actix-protobuf
2021-03-21 09:38:29 +00:00
..
examples/prost-example Use re-exported bytes items from instead of using them directly (#139) 2020-12-01 10:21:56 +09:00
src Use re-exported bytes items from instead of using them directly (#139) 2020-12-01 10:21:56 +09:00
Cargo.toml Use re-exported bytes items from instead of using them directly (#139) 2020-12-01 10:21:56 +09:00
CHANGES.md lint and readme cleanup (#97) 2020-09-12 00:52:55 +01:00
LICENSE-APACHE merge project metadata 2020-01-30 00:31:25 +00:00
LICENSE-MIT merge project metadata 2020-01-30 00:31:25 +00:00
README.md session, redis, and httpauth pre-v4 releases (#162) 2021-03-21 09:38:29 +00:00

actix-protobuf

crates.io Documentation Dependency Status Apache 2.0 or MIT licensed Join the chat at https://gitter.im/actix/actix

Protobuf support for actix-web framework.

  • Minimum supported Rust version: 1.42.0 or later

Example

use actix_protobuf::*;
use actix_web::*;

#[derive(Clone, PartialEq, Message)]
pub struct MyObj {
    #[prost(int32, tag = "1")]
    pub number: i32,
    #[prost(string, tag = "2")]
    pub name: String,
}

async fn index(msg: ProtoBuf<MyObj>) -> Result<HttpResponse> {
    println!("model: {:?}", msg);
    HttpResponse::Ok().protobuf(msg.0) // <- send response
}

See here for the complete example.

License

This project is licensed under either of

at your option.