protobuf 1.0.10

Rust implementation of Google protocol buffers
Documentation
1
2
3
4
5
6
7
8
package test_enum_alias;

enum EnumWithAlias {
    option allow_alias = true;
    A = 1;
    B = 2;
    C = 1;
}