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