@@ -24,6 +24,13 @@ pub struct ModuleDescriptor {
24
24
#[ prost( message, repeated, tag = "3" ) ]
25
25
pub can_migrate_from : :: prost:: alloc:: vec:: Vec < MigrateFromInfo > ,
26
26
}
27
+ impl :: prost:: Name for ModuleDescriptor {
28
+ const NAME : & ' static str = "ModuleDescriptor" ;
29
+ const PACKAGE : & ' static str = "cosmos.app.v1alpha1" ;
30
+ fn full_name ( ) -> :: prost:: alloc:: string:: String {
31
+ :: prost:: alloc:: format!( "cosmos.app.v1alpha1.{}" , Self :: NAME )
32
+ }
33
+ }
27
34
/// PackageReference is a reference to a protobuf package used by a module.
28
35
#[ allow( clippy:: derive_partial_eq_without_eq) ]
29
36
#[ derive( Clone , PartialEq , :: prost:: Message ) ]
@@ -69,6 +76,13 @@ pub struct PackageReference {
69
76
#[ prost( uint32, tag = "2" ) ]
70
77
pub revision : u32 ,
71
78
}
79
+ impl :: prost:: Name for PackageReference {
80
+ const NAME : & ' static str = "PackageReference" ;
81
+ const PACKAGE : & ' static str = "cosmos.app.v1alpha1" ;
82
+ fn full_name ( ) -> :: prost:: alloc:: string:: String {
83
+ :: prost:: alloc:: format!( "cosmos.app.v1alpha1.{}" , Self :: NAME )
84
+ }
85
+ }
72
86
/// MigrateFromInfo is information on a module version that a newer module
73
87
/// can migrate from.
74
88
#[ allow( clippy:: derive_partial_eq_without_eq) ]
@@ -79,6 +93,13 @@ pub struct MigrateFromInfo {
79
93
#[ prost( string, tag = "1" ) ]
80
94
pub module : :: prost:: alloc:: string:: String ,
81
95
}
96
+ impl :: prost:: Name for MigrateFromInfo {
97
+ const NAME : & ' static str = "MigrateFromInfo" ;
98
+ const PACKAGE : & ' static str = "cosmos.app.v1alpha1" ;
99
+ fn full_name ( ) -> :: prost:: alloc:: string:: String {
100
+ :: prost:: alloc:: format!( "cosmos.app.v1alpha1.{}" , Self :: NAME )
101
+ }
102
+ }
82
103
/// Config represents the configuration for a Cosmos SDK ABCI app.
83
104
/// It is intended that all state machine logic including the version of
84
105
/// baseapp and tx handlers (and possibly even Tendermint) that an app needs
@@ -98,6 +119,13 @@ pub struct Config {
98
119
#[ prost( message, repeated, tag = "2" ) ]
99
120
pub golang_bindings : :: prost:: alloc:: vec:: Vec < GolangBinding > ,
100
121
}
122
+ impl :: prost:: Name for Config {
123
+ const NAME : & ' static str = "Config" ;
124
+ const PACKAGE : & ' static str = "cosmos.app.v1alpha1" ;
125
+ fn full_name ( ) -> :: prost:: alloc:: string:: String {
126
+ :: prost:: alloc:: format!( "cosmos.app.v1alpha1.{}" , Self :: NAME )
127
+ }
128
+ }
101
129
/// ModuleConfig is a module configuration for an app.
102
130
#[ allow( clippy:: derive_partial_eq_without_eq) ]
103
131
#[ derive( Clone , PartialEq , :: prost:: Message ) ]
@@ -124,6 +152,13 @@ pub struct ModuleConfig {
124
152
#[ prost( message, repeated, tag = "3" ) ]
125
153
pub golang_bindings : :: prost:: alloc:: vec:: Vec < GolangBinding > ,
126
154
}
155
+ impl :: prost:: Name for ModuleConfig {
156
+ const NAME : & ' static str = "ModuleConfig" ;
157
+ const PACKAGE : & ' static str = "cosmos.app.v1alpha1" ;
158
+ fn full_name ( ) -> :: prost:: alloc:: string:: String {
159
+ :: prost:: alloc:: format!( "cosmos.app.v1alpha1.{}" , Self :: NAME )
160
+ }
161
+ }
127
162
/// GolangBinding is an explicit interface type to implementing type binding for dependency injection.
128
163
#[ allow( clippy:: derive_partial_eq_without_eq) ]
129
164
#[ derive( Clone , PartialEq , :: prost:: Message ) ]
@@ -135,10 +170,24 @@ pub struct GolangBinding {
135
170
#[ prost( string, tag = "2" ) ]
136
171
pub implementation : :: prost:: alloc:: string:: String ,
137
172
}
173
+ impl :: prost:: Name for GolangBinding {
174
+ const NAME : & ' static str = "GolangBinding" ;
175
+ const PACKAGE : & ' static str = "cosmos.app.v1alpha1" ;
176
+ fn full_name ( ) -> :: prost:: alloc:: string:: String {
177
+ :: prost:: alloc:: format!( "cosmos.app.v1alpha1.{}" , Self :: NAME )
178
+ }
179
+ }
138
180
/// QueryConfigRequest is the Query/Config request type.
139
181
#[ allow( clippy:: derive_partial_eq_without_eq) ]
140
182
#[ derive( Clone , PartialEq , :: prost:: Message ) ]
141
183
pub struct QueryConfigRequest { }
184
+ impl :: prost:: Name for QueryConfigRequest {
185
+ const NAME : & ' static str = "QueryConfigRequest" ;
186
+ const PACKAGE : & ' static str = "cosmos.app.v1alpha1" ;
187
+ fn full_name ( ) -> :: prost:: alloc:: string:: String {
188
+ :: prost:: alloc:: format!( "cosmos.app.v1alpha1.{}" , Self :: NAME )
189
+ }
190
+ }
142
191
/// QueryConfigRequest is the Query/Config response type.
143
192
#[ allow( clippy:: derive_partial_eq_without_eq) ]
144
193
#[ derive( Clone , PartialEq , :: prost:: Message ) ]
@@ -147,6 +196,13 @@ pub struct QueryConfigResponse {
147
196
#[ prost( message, optional, tag = "1" ) ]
148
197
pub config : :: core:: option:: Option < Config > ,
149
198
}
199
+ impl :: prost:: Name for QueryConfigResponse {
200
+ const NAME : & ' static str = "QueryConfigResponse" ;
201
+ const PACKAGE : & ' static str = "cosmos.app.v1alpha1" ;
202
+ fn full_name ( ) -> :: prost:: alloc:: string:: String {
203
+ :: prost:: alloc:: format!( "cosmos.app.v1alpha1.{}" , Self :: NAME )
204
+ }
205
+ }
150
206
include ! ( "cosmos.app.v1alpha1.serde.rs" ) ;
151
207
include ! ( "cosmos.app.v1alpha1.tonic.rs" ) ;
152
208
// @@protoc_insertion_point(module)
0 commit comments