File: footer.proto

package info (click to toggle)
golang-gogoprotobuf 1.3.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bookworm-backports, bookworm-proposed-updates, experimental, forky, sid, trixie, trixie-backports, trixie-proposed-updates
  • size: 19,532 kB
  • sloc: makefile: 573; sh: 44
file content (25 lines) | stat: -rw-r--r-- 593 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

message MessageWithMap {
  map<int32, string> name_mapping = 1;
  map<sint64, FloatingPoint> msg_mapping = 2;
  map<bool, bytes> byte_mapping = 3;
}

message FloatingPoint {
  double f = 1;
}

message Uint128Pair {
  bytes left = 1 [(gogoproto.nullable) = false, (gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"];
  bytes right = 2 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uint128"];
}

message ContainsNestedMap {
	message NestedMap {
		map<string, double> NestedMapField = 1;
	}
}

message NotPacked {
	repeated uint64 key = 5 [packed=false];
}