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-12-29 10:29:27 +00:00
..
examples/prost-example Update to actix-web beta.17 (#217) 2021-12-29 09:25:52 +00:00
src migrate to actix-web beta 14 (#209) 2021-12-11 16:05:21 +00:00
Cargo.toml prepare actix-protobuf release 0.7.0-beta.3 2021-12-29 10:29:27 +00:00
CHANGES.md prepare actix-protobuf release 0.7.0-beta.3 2021-12-29 10:29:27 +00: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 prepare actix-protobuf release 0.7.0-beta.3 2021-12-29 10:29:27 +00:00

actix-protobuf

Protobuf support for Actix Web.

crates.io Documentation Apache 2.0 or MIT licensed Dependency Status

Documentation & Resources

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.