oxiproto-codegen 0.1.2

Pure Rust protobuf code generator from FileDescriptorSet to Rust structs/enums
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
syntax = "proto3";
package nested;

message Level1 {
  int32 id = 1;
  Level2 child = 2;
  message Level2 {
    string name = 1;
    Level3 inner = 2;
    message Level3 {
      bool flag = 1;
    }
  }
}