[go: up one dir, main page]

protobuf 1.0.11

Rust implementation of Google protocol buffers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
message Foo {
}

message Bar {
}

message Baz {
    oneof xx {
        Foo foo = 1;
        Bar bar = 2;
    }
}