77 86 | runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
|
78 87 | }
|
79 88 | runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
|
80 89 | config_override,
|
81 90 | client_config.config.clone(),
|
82 91 | &client_config.runtime_components,
|
83 92 | ));
|
84 93 | }
|
85 94 | runtime_plugins
|
86 95 | }
|
96 + | /* OperationGenerator.kt:85 */
|
87 97 | }
|
98 + | /* OperationRuntimePluginGenerator.kt:55 */
|
88 99 | impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for GetPokemonSpecies {
|
89 100 | fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
|
90 101 | let mut cfg = ::aws_smithy_types::config_bag::Layer::new("GetPokemonSpecies");
|
91 102 |
|
92 103 | cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
|
93 104 | GetPokemonSpeciesRequestSerializer,
|
94 105 | ));
|
95 106 | cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
|
96 107 | GetPokemonSpeciesResponseDeserializer,
|
97 108 | ));
|
98 109 |
|
99 110 | cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
|
100 111 | ::aws_smithy_runtime_api::client::auth::static_resolver::StaticAuthSchemeOptionResolverParams::new(),
|
101 112 | ));
|
102 113 |
|
103 114 | cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new(
|
104 115 | "GetPokemonSpecies",
|
105 116 | "PokemonService",
|
106 117 | ));
|
107 118 |
|
108 119 | ::std::option::Option::Some(cfg.freeze())
|
109 120 | }
|
110 121 |
|
111 122 | fn runtime_components(
|
112 123 | &self,
|
113 124 | _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
|
114 125 | ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
|
115 126 | #[allow(unused_mut)]
|
116 127 | let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("GetPokemonSpecies")
|
117 128 | .with_interceptor(::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default())
|
118 129 | .with_interceptor(GetPokemonSpeciesEndpointParamsInterceptor)
|
119 130 | .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
|
120 131 | crate::operation::get_pokemon_species::GetPokemonSpeciesError,
|
121 132 | >::new())
|
122 133 | .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
|
123 134 | crate::operation::get_pokemon_species::GetPokemonSpeciesError,
|
124 135 | >::new());
|
125 136 |
|
126 137 | ::std::borrow::Cow::Owned(rcb)
|
127 138 | }
|
128 139 | }
|
129 140 |
|
141 + | /* ResponseDeserializerGenerator.kt:64 */
|
130 142 | #[derive(Debug)]
|
131 143 | struct GetPokemonSpeciesResponseDeserializer;
|
132 144 | impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for GetPokemonSpeciesResponseDeserializer {
|
133 145 | fn deserialize_nonstreaming(
|
134 146 | &self,
|
135 147 | response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
|
136 148 | ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
|
137 149 | let (success, status) = (response.status().is_success(), response.status().as_u16());
|
138 150 | let headers = response.headers();
|
139 151 | let body = response.body().bytes().expect("body loaded");
|
140 152 | #[allow(unused_mut)]
|
141 153 | let mut force_error = false;
|
142 154 |
|
143 155 | let parse_result = if !success && status != 200 || force_error {
|
144 156 | crate::protocol_serde::shape_get_pokemon_species::de_get_pokemon_species_http_error(status, headers, body)
|
145 157 | } else {
|
146 158 | crate::protocol_serde::shape_get_pokemon_species::de_get_pokemon_species_http_response(status, headers, body)
|
147 159 | };
|
148 160 | crate::protocol_serde::type_erase_result(parse_result)
|
149 161 | }
|
150 162 | }
|
163 + | /* RequestSerializerGenerator.kt:67 */
|
151 164 | #[derive(Debug)]
|
152 165 | struct GetPokemonSpeciesRequestSerializer;
|
153 166 | impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for GetPokemonSpeciesRequestSerializer {
|
154 167 | #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
|
155 168 | fn serialize_input(
|
156 169 | &self,
|
157 170 | input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
|
158 171 | _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
|
159 172 | ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
|
160 173 | let input = input
|
161 174 | .downcast::<crate::operation::get_pokemon_species::GetPokemonSpeciesInput>()
|
162 175 | .expect("correct type");
|
163 176 | let _header_serialization_settings = _cfg
|
164 177 | .load::<crate::serialization_settings::HeaderSerializationSettings>()
|
165 178 | .cloned()
|
166 179 | .unwrap_or_default();
|
167 180 | let mut request_builder = {
|
168 181 | fn uri_base(
|
169 182 | _input: &crate::operation::get_pokemon_species::GetPokemonSpeciesInput,
|
170 183 | output: &mut ::std::string::String,
|
171 184 | ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
|
172 185 | use ::std::fmt::Write as _;
|
173 186 | let input_1 = &_input.name;
|
174 187 | let input_1 = input_1
|
175 188 | .as_ref()
|
176 189 | .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("name", "cannot be empty or unset"))?;
|
177 190 | let name = ::aws_smithy_http::label::fmt_string(input_1, ::aws_smithy_http::label::EncodingStrategy::Default);
|
178 191 | if name.is_empty() {
|
179 192 | return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
|
180 193 | "name",
|
181 194 | "cannot be empty or unset",
|
182 195 | ));
|
183 196 | }
|
184 197 | ::std::write!(output, "/pokemon-species/{name}", name = name).expect("formatting should succeed");
|
185 198 | ::std::result::Result::Ok(())
|
186 199 | }
|
187 200 | #[allow(clippy::unnecessary_wraps)]
|
188 201 | fn update_http_builder(
|
189 202 | input: &crate::operation::get_pokemon_species::GetPokemonSpeciesInput,
|
190 203 | builder: ::http::request::Builder,
|
191 204 | ) -> ::std::result::Result<::http::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
|
192 205 | let mut uri = ::std::string::String::new();
|
193 206 | uri_base(input, &mut uri)?;
|
194 207 | ::std::result::Result::Ok(builder.method("GET").uri(uri))
|
195 208 | }
|
196 209 | let mut builder = update_http_builder(&input, ::http::request::Builder::new())?;
|
197 210 | builder
|
198 211 | };
|
199 212 | let body = ::aws_smithy_types::body::SdkBody::from("");
|
200 213 |
|
201 214 | ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
|
202 215 | }
|
203 216 | }
|
217 + | /* EndpointParamsInterceptorGenerator.kt:86 */
|
204 218 | #[derive(Debug)]
|
205 219 | struct GetPokemonSpeciesEndpointParamsInterceptor;
|
206 220 |
|
207 221 | impl ::aws_smithy_runtime_api::client::interceptors::Intercept for GetPokemonSpeciesEndpointParamsInterceptor {
|
208 222 | fn name(&self) -> &'static str {
|
209 223 | "GetPokemonSpeciesEndpointParamsInterceptor"
|
210 224 | }
|
211 225 |
|
212 226 | fn read_before_execution(
|
213 227 | &self,
|
214 228 | context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
|
215 229 | '_,
|
216 230 | ::aws_smithy_runtime_api::client::interceptors::context::Input,
|
217 231 | ::aws_smithy_runtime_api::client::interceptors::context::Output,
|
218 232 | ::aws_smithy_runtime_api::client::interceptors::context::Error,
|
219 233 | >,
|
220 234 | cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
|
221 235 | ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
|
222 236 | let _input = context
|
223 237 | .input()
|
224 238 | .downcast_ref::<GetPokemonSpeciesInput>()
|
225 239 | .ok_or("failed to downcast to GetPokemonSpeciesInput")?;
|
226 240 |
|
227 241 | let params = crate::config::endpoint::Params::builder().build().map_err(|err| {
|
228 242 | ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
|
229 243 | })?;
|
230 244 | cfg.interceptor_state()
|
231 245 | .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
|
232 246 | ::std::result::Result::Ok(())
|
233 247 | }
|
234 248 | }
|
235 249 |
|
236 250 | // The get_* functions below are generated from JMESPath expressions in the
|
237 251 | // operationContextParams trait. They target the operation's input shape.
|
238 252 |
|
253 + | /* OperationErrorGenerator.kt:79 */
|
239 254 | /// Error type for the `GetPokemonSpeciesError` operation.
|
255 + | /* RustType.kt:516 */
|
240 256 | #[non_exhaustive]
|
257 + | /* RustType.kt:516 */
|
241 258 | #[derive(::std::fmt::Debug)]
|
242 - | pub enum GetPokemonSpeciesError {
|
243 - | /// A standard error for input validation failures. This should be thrown by services when a member of the input structure falls outside of the modeled or documented constraints.
|
259 + | pub /* OperationErrorGenerator.kt:81 */ enum GetPokemonSpeciesError {
|
260 + | /// /* OperationErrorGenerator.kt:83 */A standard error for input validation failures. This should be thrown by services when a member of the input structure falls outside of the modeled or documented constraints.
|
261 + | /* OperationErrorGenerator.kt:86 */
|
244 262 | ValidationError(crate::types::error::ValidationError),
|
263 + | /* OperationErrorGenerator.kt:83 */
|
245 264 | #[allow(missing_docs)] // documentation missing in model
|
265 + | /* OperationErrorGenerator.kt:86 */
|
246 266 | ResourceNotFoundError(crate::types::error::ResourceNotFoundError),
|
267 + | /* OperationErrorGenerator.kt:88 */
|
247 268 | /// An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
|
248 269 | #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
|
249 270 | variable wildcard pattern and check `.code()`:
|
250 271 | \
|
251 272 | `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
|
252 273 | \
|
253 274 | See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-GetPokemonSpeciesError) for what information is available for the error.")]
|
254 275 | Unhandled(crate::error::sealed_unhandled::Unhandled),
|
276 + | /* OperationErrorGenerator.kt:81 */
|
255 277 | }
|
278 + | /* OperationErrorGenerator.kt:218 */
|
256 279 | impl GetPokemonSpeciesError {
|
280 + | /* OperationErrorGenerator.kt:219 */
|
257 281 | /// Creates the `GetPokemonSpeciesError::Unhandled` variant from any error type.
|
258 282 | pub fn unhandled(
|
259 283 | err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
|
260 284 | ) -> Self {
|
261 285 | Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
|
262 286 | source: err.into(),
|
263 287 | meta: ::std::default::Default::default(),
|
264 288 | })
|
265 289 | }
|
266 290 |
|
267 291 | /// Creates the `GetPokemonSpeciesError::Unhandled` variant from an [`ErrorMetadata`](::aws_smithy_types::error::ErrorMetadata).
|
268 292 | pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
|
269 293 | Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
|
270 294 | source: err.clone().into(),
|
271 295 | meta: err,
|
272 296 | })
|
273 297 | }
|
274 - | ///
|
298 + | /// /* OperationErrorGenerator.kt:236 */
|
275 299 | /// Returns error metadata, which includes the error code, message,
|
276 300 | /// request ID, and potentially additional information.
|
277 301 | ///
|
302 + | /* OperationErrorGenerator.kt:242 */
|
278 303 | pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
|
304 + | /* OperationErrorGenerator.kt:243 */
|
279 305 | match self {
|
280 - | Self::ValidationError(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
|
306 + | /* OperationErrorGenerator.kt:246 */ Self::ValidationError(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
|
307 + | /* OperationErrorGenerator.kt:246 */
|
281 308 | Self::ResourceNotFoundError(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
|
282 - | Self::Unhandled(e) => &e.meta,
|
309 + | /* OperationErrorGenerator.kt:251 */ Self::Unhandled(e) => &e.meta,
|
310 + | /* OperationErrorGenerator.kt:243 */
|
283 311 | }
|
312 + | /* OperationErrorGenerator.kt:242 */
|
284 313 | }
|
314 + | /* OperationErrorGenerator.kt:257 */
|
285 315 | /// Returns `true` if the error kind is `GetPokemonSpeciesError::ValidationError`.
|
316 + | /* OperationErrorGenerator.kt:258 */
|
286 317 | pub fn is_validation_error(&self) -> bool {
|
318 + | /* OperationErrorGenerator.kt:259 */
|
287 319 | matches!(self, Self::ValidationError(_))
|
320 + | /* OperationErrorGenerator.kt:258 */
|
288 321 | }
|
322 + | /* OperationErrorGenerator.kt:257 */
|
289 323 | /// Returns `true` if the error kind is `GetPokemonSpeciesError::ResourceNotFoundError`.
|
324 + | /* OperationErrorGenerator.kt:258 */
|
290 325 | pub fn is_resource_not_found_error(&self) -> bool {
|
326 + | /* OperationErrorGenerator.kt:259 */
|
291 327 | matches!(self, Self::ResourceNotFoundError(_))
|
328 + | /* OperationErrorGenerator.kt:258 */
|
292 329 | }
|
330 + | /* OperationErrorGenerator.kt:218 */
|
293 331 | }
|
332 + | /* OperationErrorGenerator.kt:269 */
|
294 333 | impl ::std::error::Error for GetPokemonSpeciesError {
|
334 + | /* OperationErrorGenerator.kt:270 */
|
295 335 | fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
|
336 + | /* OperationErrorGenerator.kt:318 */
|
296 337 | match self {
|
297 - | Self::ValidationError(_inner) => ::std::option::Option::Some(_inner),
|
298 - | Self::ResourceNotFoundError(_inner) => ::std::option::Option::Some(_inner),
|
299 - | Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
|
338 + | /* OperationErrorGenerator.kt:321 */
|
339 + | Self::ValidationError(_inner) =>
|
340 + | /* OperationErrorGenerator.kt:283 */
|
341 + | {
|
342 + | ::std::option::Option::Some(_inner)
|
343 + | }
|
344 + | ,
|
345 + | /* OperationErrorGenerator.kt:321 */
|
346 + | Self::ResourceNotFoundError(_inner) =>
|
347 + | /* OperationErrorGenerator.kt:283 */
|
348 + | {
|
349 + | ::std::option::Option::Some(_inner)
|
350 + | }
|
351 + | ,
|
352 + | /* OperationErrorGenerator.kt:326 */
|
353 + | Self::Unhandled(_inner) => {
|
354 + | /* OperationErrorGenerator.kt:279 */
|
355 + | ::std::option::Option::Some(&*_inner.source)
|
356 + | /* OperationErrorGenerator.kt:326 */
|
357 + | } /* OperationErrorGenerator.kt:318 */
|
300 358 | }
|
359 + | /* OperationErrorGenerator.kt:270 */
|
301 360 | }
|
361 + | /* OperationErrorGenerator.kt:269 */
|
302 362 | }
|
363 + | /* OperationErrorGenerator.kt:133 */
|
303 364 | impl ::std::fmt::Display for GetPokemonSpeciesError {
|
365 + | /* OperationErrorGenerator.kt:134 */
|
304 366 | fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
367 + | /* OperationErrorGenerator.kt:318 */
|
305 368 | match self {
|
306 - | Self::ValidationError(_inner) => _inner.fmt(f),
|
307 - | Self::ResourceNotFoundError(_inner) => _inner.fmt(f),
|
369 + | /* OperationErrorGenerator.kt:321 */
|
370 + | Self::ValidationError(_inner) =>
|
371 + | /* OperationErrorGenerator.kt:151 */
|
372 + | {
|
373 + | _inner.fmt(f)
|
374 + | }
|
375 + | ,
|
376 + | /* OperationErrorGenerator.kt:321 */
|
377 + | Self::ResourceNotFoundError(_inner) =>
|
378 + | /* OperationErrorGenerator.kt:151 */
|
379 + | {
|
380 + | _inner.fmt(f)
|
381 + | }
|
382 + | ,
|
383 + | /* OperationErrorGenerator.kt:326 */
|
308 384 | Self::Unhandled(_inner) => {
|
385 + | /* OperationErrorGenerator.kt:139 */
|
309 386 | if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
|
310 387 | write!(f, "unhandled error ({code})")
|
311 388 | } else {
|
312 389 | f.write_str("unhandled error")
|
313 390 | }
|
391 + | /* OperationErrorGenerator.kt:326 */
|
392 + | } /* OperationErrorGenerator.kt:318 */
|
314 393 | }
|
394 + | /* OperationErrorGenerator.kt:134 */
|
315 395 | }
|
316 - | }
|
396 + | /* OperationErrorGenerator.kt:133 */
|
317 397 | }
|
398 + | /* OperationErrorGenerator.kt:182 */
|
318 399 | impl ::aws_smithy_types::retry::ProvideErrorKind for GetPokemonSpeciesError {
|
400 + | /* OperationErrorGenerator.kt:186 */
|
319 401 | fn code(&self) -> ::std::option::Option<&str> {
|
402 + | /* OperationErrorGenerator.kt:187 */
|
320 403 | ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
|
404 + | /* OperationErrorGenerator.kt:186 */
|
321 405 | }
|
406 + | /* OperationErrorGenerator.kt:190 */
|
322 407 | fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
|
408 + | /* OperationErrorGenerator.kt:197 */
|
323 409 | ::std::option::Option::None
|
410 + | /* OperationErrorGenerator.kt:190 */
|
324 411 | }
|
412 + | /* OperationErrorGenerator.kt:182 */
|
325 413 | }
|
414 + | /* OperationErrorGenerator.kt:163 */
|
326 415 | impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for GetPokemonSpeciesError {
|
416 + | /* OperationErrorGenerator.kt:164 */
|
327 417 | fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
|
418 + | /* OperationErrorGenerator.kt:318 */
|
328 419 | match self {
|
329 - | Self::ValidationError(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
|
330 - | Self::ResourceNotFoundError(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
|
331 - | Self::Unhandled(_inner) => &_inner.meta,
|
420 + | /* OperationErrorGenerator.kt:321 */
|
421 + | Self::ValidationError(_inner) =>
|
422 + | /* OperationErrorGenerator.kt:169 */
|
423 + | {
|
424 + | ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner)
|
425 + | }
|
426 + | ,
|
427 + | /* OperationErrorGenerator.kt:321 */
|
428 + | Self::ResourceNotFoundError(_inner) =>
|
429 + | /* OperationErrorGenerator.kt:169 */
|
430 + | {
|
431 + | ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner)
|
432 + | }
|
433 + | ,
|
434 + | /* OperationErrorGenerator.kt:326 */
|
435 + | Self::Unhandled(_inner) => {
|
436 + | /* OperationErrorGenerator.kt:168 */
|
437 + | &_inner.meta
|
438 + | /* OperationErrorGenerator.kt:326 */
|
439 + | } /* OperationErrorGenerator.kt:318 */
|
332 440 | }
|
441 + | /* OperationErrorGenerator.kt:164 */
|
333 442 | }
|
443 + | /* OperationErrorGenerator.kt:163 */
|
334 444 | }
|
445 + | /* OperationErrorGenerator.kt:109 */
|
335 446 | impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for GetPokemonSpeciesError {
|
447 + | /* OperationErrorGenerator.kt:110 */
|
336 448 | fn create_unhandled_error(
|
337 449 | source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
|
338 450 | meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
|
339 451 | ) -> Self {
|
452 + | /* OperationErrorGenerator.kt:121 */
|
340 453 | Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
|
341 454 | source,
|
342 455 | meta: meta.unwrap_or_default(),
|
343 456 | })
|
457 + | /* OperationErrorGenerator.kt:110 */
|
344 458 | }
|
459 + | /* OperationErrorGenerator.kt:109 */
|
345 460 | }
|
346 461 |
|
462 + | /* CodegenDelegator.kt:255 */
|
347 463 | pub use crate::operation::get_pokemon_species::_get_pokemon_species_output::GetPokemonSpeciesOutput;
|
348 464 |
|
465 + | /* CodegenDelegator.kt:255 */
|
349 466 | pub use crate::operation::get_pokemon_species::_get_pokemon_species_input::GetPokemonSpeciesInput;
|
350 467 |
|
468 + | /* RustModule.kt:172 */
|
351 469 | mod _get_pokemon_species_input;
|
352 470 |
|
471 + | /* RustModule.kt:172 */
|
353 472 | mod _get_pokemon_species_output;
|
354 473 |
|
355 - | /// Builders
|
474 + | /// /* CodegenDelegator.kt:51 */Builders
|
356 475 | pub mod builders;
|