github.com/fananchong/cstruct-go@v0.0.0-20220616060855-b65d9a2f2e17/benchmarks/myproto1.proto (about)

     1  syntax = "proto3";
     2  
     3  package benchmarks;
     4  
     5  message Myproto2
     6  {
     7  	double F3 = 3;
     8  	string F4 = 4;
     9  }
    10  
    11  message Myproto1
    12  {
    13  	bool F1 = 1;
    14  	float F2 = 2;
    15  	double F3 = 3;
    16  	string F4 = 4;
    17  	bytes F5 = 5;
    18  	int32 F6 = 6;
    19  	int32 F7 = 7;
    20  	int32 F8 = 8;
    21  	int32 F9 = 9;
    22  	int64 F10 = 10;
    23  	int64 F11 = 11;
    24  	uint32 F12 = 12;
    25  	uint32 F13 = 13;
    26  	uint32 F14 = 14;
    27  	uint32 F15 = 15;
    28  	uint64 F16 = 16;
    29  	uint64 F17 = 17;
    30  	Myproto2 S0 = 18;
    31  	repeated string F29 = 19;
    32  	repeated Myproto2 F30 = 20;
    33  }