1 1 | // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
|
2 + | /* RustType.kt:516 */
|
2 3 | #[::pyo3::pyclass]
|
4 + | /* PythonServerStructureGenerator.kt:63 */
|
3 5 | /// :param dialog rest_json.model.Dialog:
|
4 6 | /// :param dialog_list typing.List\[rest_json.model.Dialog\]:
|
5 7 | /// :param dialog_map typing.Dict\[str, rest_json.model.Dialog\]:
|
6 8 | /// :rtype None:
|
9 + | /* StructureGenerator.kt:197 */
|
7 10 | #[allow(missing_docs)] // documentation missing in model
|
11 + | /* RustType.kt:516 */
|
8 12 | #[derive(::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug)]
|
9 - | pub struct OperationWithNestedStructureOutput {
|
13 + | pub /* StructureGenerator.kt:201 */ struct OperationWithNestedStructureOutput {
|
14 + | /* RustType.kt:516 */
|
10 15 | #[pyo3(get, set)]
|
16 + | /* PythonServerStructureGenerator.kt:80 */
|
11 17 | /// :type rest_json.model.Dialog:
|
18 + | /* StructureGenerator.kt:231 */
|
12 19 | #[allow(missing_docs)] // documentation missing in model
|
13 20 | pub dialog: crate::model::Dialog,
|
21 + | /* RustType.kt:516 */
|
14 22 | #[pyo3(get, set)]
|
23 + | /* PythonServerStructureGenerator.kt:80 */
|
15 24 | /// :type typing.List\[rest_json.model.Dialog\]:
|
25 + | /* StructureGenerator.kt:231 */
|
16 26 | #[allow(missing_docs)] // documentation missing in model
|
17 27 | pub dialog_list: ::std::vec::Vec<crate::model::Dialog>,
|
28 + | /* RustType.kt:516 */
|
18 29 | #[pyo3(get, set)]
|
30 + | /* PythonServerStructureGenerator.kt:80 */
|
19 31 | /// :type typing.Dict\[str, rest_json.model.Dialog\]:
|
32 + | /* StructureGenerator.kt:231 */
|
20 33 | #[allow(missing_docs)] // documentation missing in model
|
21 34 | pub dialog_map: ::std::collections::HashMap<::std::string::String, crate::model::Dialog>,
|
35 + | /* StructureGenerator.kt:201 */
|
22 36 | }
|
37 + | /* StructureGenerator.kt:135 */
|
23 38 | impl OperationWithNestedStructureOutput {
|
39 + | /* StructureGenerator.kt:231 */
|
24 40 | #[allow(missing_docs)] // documentation missing in model
|
41 + | /* StructureGenerator.kt:166 */
|
25 42 | pub fn dialog(&self) -> &crate::model::Dialog {
|
43 + | /* StructureGenerator.kt:172 */
|
26 44 | &self.dialog
|
45 + | /* StructureGenerator.kt:166 */
|
27 46 | }
|
47 + | /* StructureGenerator.kt:231 */
|
28 48 | #[allow(missing_docs)] // documentation missing in model
|
49 + | /* StructureGenerator.kt:166 */
|
29 50 | pub fn dialog_list(&self) -> &[crate::model::Dialog] {
|
51 + | /* StructureGenerator.kt:171 */
|
30 52 | use std::ops::Deref;
|
31 53 | self.dialog_list.deref()
|
54 + | /* StructureGenerator.kt:166 */
|
32 55 | }
|
56 + | /* StructureGenerator.kt:231 */
|
33 57 | #[allow(missing_docs)] // documentation missing in model
|
58 + | /* StructureGenerator.kt:166 */
|
34 59 | pub fn dialog_map(
|
35 60 | &self,
|
36 61 | ) -> &::std::collections::HashMap<::std::string::String, crate::model::Dialog> {
|
62 + | /* StructureGenerator.kt:172 */
|
37 63 | &self.dialog_map
|
64 + | /* StructureGenerator.kt:166 */
|
38 65 | }
|
66 + | /* StructureGenerator.kt:135 */
|
39 67 | }
|
68 + | /* RustType.kt:516 */
|
40 69 | #[allow(clippy::new_without_default)]
|
70 + | /* RustType.kt:516 */
|
41 71 | #[allow(clippy::too_many_arguments)]
|
72 + | /* RustType.kt:516 */
|
42 73 | #[::pyo3::pymethods]
|
74 + | /* PythonServerStructureGenerator.kt:88 */
|
43 75 | impl OperationWithNestedStructureOutput {
|
44 76 | #[new]
|
45 77 | pub fn new(
|
46 78 | dialog: crate::model::Dialog,
|
47 79 | dialog_list: ::std::vec::Vec<crate::model::Dialog>,
|
48 80 | dialog_map: ::std::collections::HashMap<::std::string::String, crate::model::Dialog>,
|
49 81 | ) -> Self {
|
50 82 | Self {
|
51 83 | dialog,
|
52 84 | dialog_list,
|
53 85 | dialog_map,
|
54 86 | }
|
55 87 | }
|
56 88 | fn __repr__(&self) -> String {
|
57 89 | format!("{self:?}")
|
58 90 | }
|
59 91 | fn __str__(&self) -> String {
|
60 92 | format!("{self:?}")
|
61 93 | }
|
62 94 | }
|
95 + | /* PythonServerStructureGenerator.kt:111 */
|
63 96 | impl<'source> ::pyo3::FromPyObject<'source>
|
64 97 | for std::boxed::Box<OperationWithNestedStructureOutput>
|
65 98 | {
|
66 99 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
67 100 | ob.extract::<OperationWithNestedStructureOutput>()
|
68 101 | .map(Box::new)
|
69 102 | }
|
70 103 | }
|
71 104 |
|
72 105 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<OperationWithNestedStructureOutput> {
|
73 106 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
74 107 | (*self).into_py(py)
|
75 108 | }
|
76 109 | }
|
110 + | /* ServerCodegenVisitor.kt:370 */
|
77 111 | impl OperationWithNestedStructureOutput {
|
78 - | /// Creates a new builder-style object to manufacture [`OperationWithNestedStructureOutput`](crate::output::OperationWithNestedStructureOutput).
|
112 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`OperationWithNestedStructureOutput`](crate::output::OperationWithNestedStructureOutput).
|
113 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
79 114 | pub fn builder() -> crate::output::operation_with_nested_structure_output::Builder {
|
115 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
80 116 | crate::output::operation_with_nested_structure_output::Builder::default()
|
117 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
81 118 | }
|
119 + | /* ServerCodegenVisitor.kt:370 */
|
82 120 | }
|
83 121 |
|
122 + | /* RustType.kt:516 */
|
84 123 | #[::pyo3::pyclass]
|
124 + | /* PythonServerStructureGenerator.kt:63 */
|
85 125 | /// :param default_string str:
|
86 126 | /// :param default_boolean bool:
|
87 127 | /// :param default_list typing.List\[str\]:
|
88 128 | /// :param default_document_map rest_json.types.Document:
|
89 129 | /// :param default_document_string rest_json.types.Document:
|
90 130 | /// :param default_document_boolean rest_json.types.Document:
|
91 131 | /// :param default_document_list rest_json.types.Document:
|
92 - | /// :param default_null_document typing.Optional\[rest_json.types.Document\]:
|
93 132 | /// :param default_timestamp rest_json.types.DateTime:
|
94 133 | /// :param default_blob rest_json.types.Blob:
|
95 134 | /// :param default_byte int:
|
96 135 | /// :param default_short int:
|
97 136 | /// :param default_integer int:
|
98 137 | /// :param default_long int:
|
99 138 | /// :param default_float float:
|
100 139 | /// :param default_double float:
|
101 140 | /// :param default_map typing.Dict\[str, str\]:
|
102 141 | /// :param default_enum rest_json.model.TestEnum:
|
103 142 | /// :param default_int_enum int:
|
104 143 | /// :param empty_string str:
|
105 144 | /// :param false_boolean bool:
|
106 145 | /// :param empty_blob rest_json.types.Blob:
|
107 146 | /// :param zero_byte int:
|
108 147 | /// :param zero_short int:
|
109 148 | /// :param zero_integer int:
|
110 149 | /// :param zero_long int:
|
111 150 | /// :param zero_float float:
|
112 151 | /// :param zero_double float:
|
152 + | /// :param default_null_document typing.Optional\[rest_json.types.Document\]:
|
113 153 | /// :rtype None:
|
154 + | /* StructureGenerator.kt:197 */
|
114 155 | #[allow(missing_docs)] // documentation missing in model
|
156 + | /* RustType.kt:516 */
|
115 157 | #[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
|
116 - | pub struct OperationWithDefaultsOutput {
|
158 + | pub /* StructureGenerator.kt:201 */ struct OperationWithDefaultsOutput {
|
159 + | /* RustType.kt:516 */
|
117 160 | #[pyo3(get, set)]
|
161 + | /* PythonServerStructureGenerator.kt:80 */
|
118 162 | /// :type str:
|
163 + | /* StructureGenerator.kt:231 */
|
119 164 | #[allow(missing_docs)] // documentation missing in model
|
120 165 | pub default_string: ::std::string::String,
|
166 + | /* RustType.kt:516 */
|
121 167 | #[pyo3(get, set)]
|
168 + | /* PythonServerStructureGenerator.kt:80 */
|
122 169 | /// :type bool:
|
170 + | /* StructureGenerator.kt:231 */
|
123 171 | #[allow(missing_docs)] // documentation missing in model
|
124 172 | pub default_boolean: bool,
|
173 + | /* RustType.kt:516 */
|
125 174 | #[pyo3(get, set)]
|
175 + | /* PythonServerStructureGenerator.kt:80 */
|
126 176 | /// :type typing.List\[str\]:
|
177 + | /* StructureGenerator.kt:231 */
|
127 178 | #[allow(missing_docs)] // documentation missing in model
|
128 179 | pub default_list: ::std::vec::Vec<::std::string::String>,
|
180 + | /* RustType.kt:516 */
|
129 181 | #[pyo3(get, set)]
|
182 + | /* PythonServerStructureGenerator.kt:80 */
|
130 183 | /// :type rest_json.types.Document:
|
184 + | /* StructureGenerator.kt:231 */
|
131 185 | #[allow(missing_docs)] // documentation missing in model
|
132 186 | pub default_document_map: ::aws_smithy_http_server_python::types::Document,
|
187 + | /* RustType.kt:516 */
|
133 188 | #[pyo3(get, set)]
|
189 + | /* PythonServerStructureGenerator.kt:80 */
|
134 190 | /// :type rest_json.types.Document:
|
191 + | /* StructureGenerator.kt:231 */
|
135 192 | #[allow(missing_docs)] // documentation missing in model
|
136 193 | pub default_document_string: ::aws_smithy_http_server_python::types::Document,
|
194 + | /* RustType.kt:516 */
|
137 195 | #[pyo3(get, set)]
|
196 + | /* PythonServerStructureGenerator.kt:80 */
|
138 197 | /// :type rest_json.types.Document:
|
198 + | /* StructureGenerator.kt:231 */
|
139 199 | #[allow(missing_docs)] // documentation missing in model
|
140 200 | pub default_document_boolean: ::aws_smithy_http_server_python::types::Document,
|
201 + | /* RustType.kt:516 */
|
141 202 | #[pyo3(get, set)]
|
203 + | /* PythonServerStructureGenerator.kt:80 */
|
142 204 | /// :type rest_json.types.Document:
|
205 + | /* StructureGenerator.kt:231 */
|
143 206 | #[allow(missing_docs)] // documentation missing in model
|
144 207 | pub default_document_list: ::aws_smithy_http_server_python::types::Document,
|
208 + | /* RustType.kt:516 */
|
145 209 | #[pyo3(get, set)]
|
210 + | /* PythonServerStructureGenerator.kt:80 */
|
146 211 | /// :type typing.Optional\[rest_json.types.Document\]:
|
212 + | /* StructureGenerator.kt:231 */
|
147 213 | #[allow(missing_docs)] // documentation missing in model
|
148 214 | pub default_null_document:
|
149 215 | ::std::option::Option<::aws_smithy_http_server_python::types::Document>,
|
216 + | /* RustType.kt:516 */
|
150 217 | #[pyo3(get, set)]
|
218 + | /* PythonServerStructureGenerator.kt:80 */
|
151 219 | /// :type rest_json.types.DateTime:
|
220 + | /* StructureGenerator.kt:231 */
|
152 221 | #[allow(missing_docs)] // documentation missing in model
|
153 222 | pub default_timestamp: ::aws_smithy_http_server_python::types::DateTime,
|
223 + | /* RustType.kt:516 */
|
154 224 | #[pyo3(get, set)]
|
225 + | /* PythonServerStructureGenerator.kt:80 */
|
155 226 | /// :type rest_json.types.Blob:
|
227 + | /* StructureGenerator.kt:231 */
|
156 228 | #[allow(missing_docs)] // documentation missing in model
|
157 229 | pub default_blob: ::aws_smithy_http_server_python::types::Blob,
|
230 + | /* RustType.kt:516 */
|
158 231 | #[pyo3(get, set)]
|
232 + | /* PythonServerStructureGenerator.kt:80 */
|
159 233 | /// :type int:
|
234 + | /* StructureGenerator.kt:231 */
|
160 235 | #[allow(missing_docs)] // documentation missing in model
|
161 236 | pub default_byte: i8,
|
237 + | /* RustType.kt:516 */
|
162 238 | #[pyo3(get, set)]
|
239 + | /* PythonServerStructureGenerator.kt:80 */
|
163 240 | /// :type int:
|
241 + | /* StructureGenerator.kt:231 */
|
164 242 | #[allow(missing_docs)] // documentation missing in model
|
165 243 | pub default_short: i16,
|
244 + | /* RustType.kt:516 */
|
166 245 | #[pyo3(get, set)]
|
246 + | /* PythonServerStructureGenerator.kt:80 */
|
167 247 | /// :type int:
|
248 + | /* StructureGenerator.kt:231 */
|
168 249 | #[allow(missing_docs)] // documentation missing in model
|
169 250 | pub default_integer: i32,
|
251 + | /* RustType.kt:516 */
|
170 252 | #[pyo3(get, set)]
|
253 + | /* PythonServerStructureGenerator.kt:80 */
|
171 254 | /// :type int:
|
255 + | /* StructureGenerator.kt:231 */
|
172 256 | #[allow(missing_docs)] // documentation missing in model
|
173 257 | pub default_long: i64,
|
258 + | /* RustType.kt:516 */
|
174 259 | #[pyo3(get, set)]
|
260 + | /* PythonServerStructureGenerator.kt:80 */
|
175 261 | /// :type float:
|
262 + | /* StructureGenerator.kt:231 */
|
176 263 | #[allow(missing_docs)] // documentation missing in model
|
177 264 | pub default_float: f32,
|
265 + | /* RustType.kt:516 */
|
178 266 | #[pyo3(get, set)]
|
267 + | /* PythonServerStructureGenerator.kt:80 */
|
179 268 | /// :type float:
|
269 + | /* StructureGenerator.kt:231 */
|
180 270 | #[allow(missing_docs)] // documentation missing in model
|
181 271 | pub default_double: f64,
|
272 + | /* RustType.kt:516 */
|
182 273 | #[pyo3(get, set)]
|
274 + | /* PythonServerStructureGenerator.kt:80 */
|
183 275 | /// :type typing.Dict\[str, str\]:
|
276 + | /* StructureGenerator.kt:231 */
|
184 277 | #[allow(missing_docs)] // documentation missing in model
|
185 278 | pub default_map: ::std::collections::HashMap<::std::string::String, ::std::string::String>,
|
279 + | /* RustType.kt:516 */
|
186 280 | #[pyo3(get, set)]
|
281 + | /* PythonServerStructureGenerator.kt:80 */
|
187 282 | /// :type rest_json.model.TestEnum:
|
283 + | /* StructureGenerator.kt:231 */
|
188 284 | #[allow(missing_docs)] // documentation missing in model
|
189 285 | pub default_enum: crate::model::TestEnum,
|
286 + | /* RustType.kt:516 */
|
190 287 | #[pyo3(get, set)]
|
288 + | /* PythonServerStructureGenerator.kt:80 */
|
191 289 | /// :type int:
|
290 + | /* StructureGenerator.kt:231 */
|
192 291 | #[allow(missing_docs)] // documentation missing in model
|
193 292 | pub default_int_enum: i32,
|
293 + | /* RustType.kt:516 */
|
194 294 | #[pyo3(get, set)]
|
295 + | /* PythonServerStructureGenerator.kt:80 */
|
195 296 | /// :type str:
|
297 + | /* StructureGenerator.kt:231 */
|
196 298 | #[allow(missing_docs)] // documentation missing in model
|
197 299 | pub empty_string: ::std::string::String,
|
300 + | /* RustType.kt:516 */
|
198 301 | #[pyo3(get, set)]
|
302 + | /* PythonServerStructureGenerator.kt:80 */
|
199 303 | /// :type bool:
|
304 + | /* StructureGenerator.kt:231 */
|
200 305 | #[allow(missing_docs)] // documentation missing in model
|
201 306 | pub false_boolean: bool,
|
307 + | /* RustType.kt:516 */
|
202 308 | #[pyo3(get, set)]
|
309 + | /* PythonServerStructureGenerator.kt:80 */
|
203 310 | /// :type rest_json.types.Blob:
|
311 + | /* StructureGenerator.kt:231 */
|
204 312 | #[allow(missing_docs)] // documentation missing in model
|
205 313 | pub empty_blob: ::aws_smithy_http_server_python::types::Blob,
|
314 + | /* RustType.kt:516 */
|
206 315 | #[pyo3(get, set)]
|
316 + | /* PythonServerStructureGenerator.kt:80 */
|
207 317 | /// :type int:
|
318 + | /* StructureGenerator.kt:231 */
|
208 319 | #[allow(missing_docs)] // documentation missing in model
|
209 320 | pub zero_byte: i8,
|
321 + | /* RustType.kt:516 */
|
210 322 | #[pyo3(get, set)]
|
323 + | /* PythonServerStructureGenerator.kt:80 */
|
211 324 | /// :type int:
|
325 + | /* StructureGenerator.kt:231 */
|
212 326 | #[allow(missing_docs)] // documentation missing in model
|
213 327 | pub zero_short: i16,
|
328 + | /* RustType.kt:516 */
|
214 329 | #[pyo3(get, set)]
|
330 + | /* PythonServerStructureGenerator.kt:80 */
|
215 331 | /// :type int:
|
332 + | /* StructureGenerator.kt:231 */
|
216 333 | #[allow(missing_docs)] // documentation missing in model
|
217 334 | pub zero_integer: i32,
|
335 + | /* RustType.kt:516 */
|
218 336 | #[pyo3(get, set)]
|
337 + | /* PythonServerStructureGenerator.kt:80 */
|
219 338 | /// :type int:
|
339 + | /* StructureGenerator.kt:231 */
|
220 340 | #[allow(missing_docs)] // documentation missing in model
|
221 341 | pub zero_long: i64,
|
342 + | /* RustType.kt:516 */
|
222 343 | #[pyo3(get, set)]
|
344 + | /* PythonServerStructureGenerator.kt:80 */
|
223 345 | /// :type float:
|
346 + | /* StructureGenerator.kt:231 */
|
224 347 | #[allow(missing_docs)] // documentation missing in model
|
225 348 | pub zero_float: f32,
|
349 + | /* RustType.kt:516 */
|
226 350 | #[pyo3(get, set)]
|
351 + | /* PythonServerStructureGenerator.kt:80 */
|
227 352 | /// :type float:
|
353 + | /* StructureGenerator.kt:231 */
|
228 354 | #[allow(missing_docs)] // documentation missing in model
|
229 355 | pub zero_double: f64,
|
356 + | /* StructureGenerator.kt:201 */
|
230 357 | }
|
358 + | /* StructureGenerator.kt:135 */
|
231 359 | impl OperationWithDefaultsOutput {
|
360 + | /* StructureGenerator.kt:231 */
|
232 361 | #[allow(missing_docs)] // documentation missing in model
|
362 + | /* StructureGenerator.kt:166 */
|
233 363 | pub fn default_string(&self) -> &str {
|
364 + | /* StructureGenerator.kt:171 */
|
234 365 | use std::ops::Deref;
|
235 366 | self.default_string.deref()
|
367 + | /* StructureGenerator.kt:166 */
|
236 368 | }
|
369 + | /* StructureGenerator.kt:231 */
|
237 370 | #[allow(missing_docs)] // documentation missing in model
|
371 + | /* StructureGenerator.kt:166 */
|
238 372 | pub fn default_boolean(&self) -> bool {
|
373 + | /* StructureGenerator.kt:168 */
|
239 374 | self.default_boolean
|
375 + | /* StructureGenerator.kt:166 */
|
240 376 | }
|
377 + | /* StructureGenerator.kt:231 */
|
241 378 | #[allow(missing_docs)] // documentation missing in model
|
379 + | /* StructureGenerator.kt:166 */
|
242 380 | pub fn default_list(&self) -> &[::std::string::String] {
|
381 + | /* StructureGenerator.kt:171 */
|
243 382 | use std::ops::Deref;
|
244 383 | self.default_list.deref()
|
384 + | /* StructureGenerator.kt:166 */
|
245 385 | }
|
386 + | /* StructureGenerator.kt:231 */
|
246 387 | #[allow(missing_docs)] // documentation missing in model
|
388 + | /* StructureGenerator.kt:166 */
|
247 389 | pub fn default_document_map(&self) -> &::aws_smithy_http_server_python::types::Document {
|
390 + | /* StructureGenerator.kt:172 */
|
248 391 | &self.default_document_map
|
392 + | /* StructureGenerator.kt:166 */
|
249 393 | }
|
394 + | /* StructureGenerator.kt:231 */
|
250 395 | #[allow(missing_docs)] // documentation missing in model
|
396 + | /* StructureGenerator.kt:166 */
|
251 397 | pub fn default_document_string(&self) -> &::aws_smithy_http_server_python::types::Document {
|
398 + | /* StructureGenerator.kt:172 */
|
252 399 | &self.default_document_string
|
400 + | /* StructureGenerator.kt:166 */
|
253 401 | }
|
402 + | /* StructureGenerator.kt:231 */
|
254 403 | #[allow(missing_docs)] // documentation missing in model
|
404 + | /* StructureGenerator.kt:166 */
|
255 405 | pub fn default_document_boolean(&self) -> &::aws_smithy_http_server_python::types::Document {
|
406 + | /* StructureGenerator.kt:172 */
|
256 407 | &self.default_document_boolean
|
408 + | /* StructureGenerator.kt:166 */
|
257 409 | }
|
410 + | /* StructureGenerator.kt:231 */
|
258 411 | #[allow(missing_docs)] // documentation missing in model
|
412 + | /* StructureGenerator.kt:166 */
|
259 413 | pub fn default_document_list(&self) -> &::aws_smithy_http_server_python::types::Document {
|
414 + | /* StructureGenerator.kt:172 */
|
260 415 | &self.default_document_list
|
416 + | /* StructureGenerator.kt:166 */
|
261 417 | }
|
418 + | /* StructureGenerator.kt:231 */
|
262 419 | #[allow(missing_docs)] // documentation missing in model
|
420 + | /* StructureGenerator.kt:166 */
|
263 421 | pub fn default_null_document(
|
264 422 | &self,
|
265 423 | ) -> ::std::option::Option<&::aws_smithy_http_server_python::types::Document> {
|
424 + | /* StructureGenerator.kt:170 */
|
266 425 | self.default_null_document.as_ref()
|
426 + | /* StructureGenerator.kt:166 */
|
267 427 | }
|
428 + | /* StructureGenerator.kt:231 */
|
268 429 | #[allow(missing_docs)] // documentation missing in model
|
430 + | /* StructureGenerator.kt:166 */
|
269 431 | pub fn default_timestamp(&self) -> &::aws_smithy_http_server_python::types::DateTime {
|
432 + | /* StructureGenerator.kt:172 */
|
270 433 | &self.default_timestamp
|
434 + | /* StructureGenerator.kt:166 */
|
271 435 | }
|
436 + | /* StructureGenerator.kt:231 */
|
272 437 | #[allow(missing_docs)] // documentation missing in model
|
438 + | /* StructureGenerator.kt:166 */
|
273 439 | pub fn default_blob(&self) -> &::aws_smithy_http_server_python::types::Blob {
|
440 + | /* StructureGenerator.kt:172 */
|
274 441 | &self.default_blob
|
442 + | /* StructureGenerator.kt:166 */
|
275 443 | }
|
444 + | /* StructureGenerator.kt:231 */
|
276 445 | #[allow(missing_docs)] // documentation missing in model
|
446 + | /* StructureGenerator.kt:166 */
|
277 447 | pub fn default_byte(&self) -> i8 {
|
448 + | /* StructureGenerator.kt:168 */
|
278 449 | self.default_byte
|
450 + | /* StructureGenerator.kt:166 */
|
279 451 | }
|
452 + | /* StructureGenerator.kt:231 */
|
280 453 | #[allow(missing_docs)] // documentation missing in model
|
454 + | /* StructureGenerator.kt:166 */
|
281 455 | pub fn default_short(&self) -> i16 {
|
456 + | /* StructureGenerator.kt:168 */
|
282 457 | self.default_short
|
458 + | /* StructureGenerator.kt:166 */
|
283 459 | }
|
460 + | /* StructureGenerator.kt:231 */
|
284 461 | #[allow(missing_docs)] // documentation missing in model
|
462 + | /* StructureGenerator.kt:166 */
|
285 463 | pub fn default_integer(&self) -> i32 {
|
464 + | /* StructureGenerator.kt:168 */
|
286 465 | self.default_integer
|
466 + | /* StructureGenerator.kt:166 */
|
287 467 | }
|
468 + | /* StructureGenerator.kt:231 */
|
288 469 | #[allow(missing_docs)] // documentation missing in model
|
470 + | /* StructureGenerator.kt:166 */
|
289 471 | pub fn default_long(&self) -> i64 {
|
472 + | /* StructureGenerator.kt:168 */
|
290 473 | self.default_long
|
474 + | /* StructureGenerator.kt:166 */
|
291 475 | }
|
476 + | /* StructureGenerator.kt:231 */
|
292 477 | #[allow(missing_docs)] // documentation missing in model
|
478 + | /* StructureGenerator.kt:166 */
|
293 479 | pub fn default_float(&self) -> f32 {
|
480 + | /* StructureGenerator.kt:168 */
|
294 481 | self.default_float
|
482 + | /* StructureGenerator.kt:166 */
|
295 483 | }
|
484 + | /* StructureGenerator.kt:231 */
|
296 485 | #[allow(missing_docs)] // documentation missing in model
|
486 + | /* StructureGenerator.kt:166 */
|
297 487 | pub fn default_double(&self) -> f64 {
|
488 + | /* StructureGenerator.kt:168 */
|
298 489 | self.default_double
|
490 + | /* StructureGenerator.kt:166 */
|
299 491 | }
|
492 + | /* StructureGenerator.kt:231 */
|
300 493 | #[allow(missing_docs)] // documentation missing in model
|
494 + | /* StructureGenerator.kt:166 */
|
301 495 | pub fn default_map(
|
302 496 | &self,
|
303 497 | ) -> &::std::collections::HashMap<::std::string::String, ::std::string::String> {
|
498 + | /* StructureGenerator.kt:172 */
|
304 499 | &self.default_map
|
500 + | /* StructureGenerator.kt:166 */
|
305 501 | }
|
502 + | /* StructureGenerator.kt:231 */
|
306 503 | #[allow(missing_docs)] // documentation missing in model
|
504 + | /* StructureGenerator.kt:166 */
|
307 505 | pub fn default_enum(&self) -> &crate::model::TestEnum {
|
506 + | /* StructureGenerator.kt:172 */
|
308 507 | &self.default_enum
|
508 + | /* StructureGenerator.kt:166 */
|
309 509 | }
|
510 + | /* StructureGenerator.kt:231 */
|
310 511 | #[allow(missing_docs)] // documentation missing in model
|
512 + | /* StructureGenerator.kt:166 */
|
311 513 | pub fn default_int_enum(&self) -> i32 {
|
514 + | /* StructureGenerator.kt:168 */
|
312 515 | self.default_int_enum
|
516 + | /* StructureGenerator.kt:166 */
|
313 517 | }
|
518 + | /* StructureGenerator.kt:231 */
|
314 519 | #[allow(missing_docs)] // documentation missing in model
|
520 + | /* StructureGenerator.kt:166 */
|
315 521 | pub fn empty_string(&self) -> &str {
|
522 + | /* StructureGenerator.kt:171 */
|
316 523 | use std::ops::Deref;
|
317 524 | self.empty_string.deref()
|
525 + | /* StructureGenerator.kt:166 */
|
318 526 | }
|
527 + | /* StructureGenerator.kt:231 */
|
319 528 | #[allow(missing_docs)] // documentation missing in model
|
529 + | /* StructureGenerator.kt:166 */
|
320 530 | pub fn false_boolean(&self) -> bool {
|
531 + | /* StructureGenerator.kt:168 */
|
321 532 | self.false_boolean
|
533 + | /* StructureGenerator.kt:166 */
|
322 534 | }
|
535 + | /* StructureGenerator.kt:231 */
|
323 536 | #[allow(missing_docs)] // documentation missing in model
|
537 + | /* StructureGenerator.kt:166 */
|
324 538 | pub fn empty_blob(&self) -> &::aws_smithy_http_server_python::types::Blob {
|
539 + | /* StructureGenerator.kt:172 */
|
325 540 | &self.empty_blob
|
541 + | /* StructureGenerator.kt:166 */
|
326 542 | }
|
543 + | /* StructureGenerator.kt:231 */
|
327 544 | #[allow(missing_docs)] // documentation missing in model
|
545 + | /* StructureGenerator.kt:166 */
|
328 546 | pub fn zero_byte(&self) -> i8 {
|
547 + | /* StructureGenerator.kt:168 */
|
329 548 | self.zero_byte
|
549 + | /* StructureGenerator.kt:166 */
|
330 550 | }
|
551 + | /* StructureGenerator.kt:231 */
|
331 552 | #[allow(missing_docs)] // documentation missing in model
|
553 + | /* StructureGenerator.kt:166 */
|
332 554 | pub fn zero_short(&self) -> i16 {
|
555 + | /* StructureGenerator.kt:168 */
|
333 556 | self.zero_short
|
557 + | /* StructureGenerator.kt:166 */
|
334 558 | }
|
559 + | /* StructureGenerator.kt:231 */
|
335 560 | #[allow(missing_docs)] // documentation missing in model
|
561 + | /* StructureGenerator.kt:166 */
|
336 562 | pub fn zero_integer(&self) -> i32 {
|
563 + | /* StructureGenerator.kt:168 */
|
337 564 | self.zero_integer
|
565 + | /* StructureGenerator.kt:166 */
|
338 566 | }
|
567 + | /* StructureGenerator.kt:231 */
|
339 568 | #[allow(missing_docs)] // documentation missing in model
|
569 + | /* StructureGenerator.kt:166 */
|
340 570 | pub fn zero_long(&self) -> i64 {
|
571 + | /* StructureGenerator.kt:168 */
|
341 572 | self.zero_long
|
573 + | /* StructureGenerator.kt:166 */
|
342 574 | }
|
575 + | /* StructureGenerator.kt:231 */
|
343 576 | #[allow(missing_docs)] // documentation missing in model
|
577 + | /* StructureGenerator.kt:166 */
|
344 578 | pub fn zero_float(&self) -> f32 {
|
579 + | /* StructureGenerator.kt:168 */
|
345 580 | self.zero_float
|
581 + | /* StructureGenerator.kt:166 */
|
346 582 | }
|
583 + | /* StructureGenerator.kt:231 */
|
347 584 | #[allow(missing_docs)] // documentation missing in model
|
585 + | /* StructureGenerator.kt:166 */
|
348 586 | pub fn zero_double(&self) -> f64 {
|
587 + | /* StructureGenerator.kt:168 */
|
349 588 | self.zero_double
|
589 + | /* StructureGenerator.kt:166 */
|
350 590 | }
|
591 + | /* StructureGenerator.kt:135 */
|
351 592 | }
|
593 + | /* RustType.kt:516 */
|
352 594 | #[allow(clippy::new_without_default)]
|
595 + | /* RustType.kt:516 */
|
353 596 | #[allow(clippy::too_many_arguments)]
|
597 + | /* RustType.kt:516 */
|
354 598 | #[::pyo3::pymethods]
|
599 + | /* PythonServerStructureGenerator.kt:88 */
|
355 600 | impl OperationWithDefaultsOutput {
|
356 601 | #[new]
|
357 602 | pub fn new(
|
358 603 | default_string: ::std::string::String,
|
359 604 | default_boolean: bool,
|
360 605 | default_list: ::std::vec::Vec<::std::string::String>,
|
361 606 | default_document_map: ::aws_smithy_http_server_python::types::Document,
|
362 607 | default_document_string: ::aws_smithy_http_server_python::types::Document,
|
363 608 | default_document_boolean: ::aws_smithy_http_server_python::types::Document,
|
364 609 | default_document_list: ::aws_smithy_http_server_python::types::Document,
|
365 - | default_null_document: ::std::option::Option<
|
366 - | ::aws_smithy_http_server_python::types::Document,
|
367 - | >,
|
368 610 | default_timestamp: ::aws_smithy_http_server_python::types::DateTime,
|
369 611 | default_blob: ::aws_smithy_http_server_python::types::Blob,
|
370 612 | default_byte: i8,
|
371 613 | default_short: i16,
|
372 614 | default_integer: i32,
|
373 615 | default_long: i64,
|
374 616 | default_float: f32,
|
375 617 | default_double: f64,
|
376 618 | default_map: ::std::collections::HashMap<::std::string::String, ::std::string::String>,
|
377 619 | default_enum: crate::model::TestEnum,
|
378 620 | default_int_enum: i32,
|
379 621 | empty_string: ::std::string::String,
|
380 622 | false_boolean: bool,
|
381 623 | empty_blob: ::aws_smithy_http_server_python::types::Blob,
|
382 624 | zero_byte: i8,
|
383 625 | zero_short: i16,
|
384 626 | zero_integer: i32,
|
385 627 | zero_long: i64,
|
386 628 | zero_float: f32,
|
387 629 | zero_double: f64,
|
630 + | default_null_document: ::std::option::Option<
|
631 + | ::aws_smithy_http_server_python::types::Document,
|
632 + | >,
|
388 633 | ) -> Self {
|
389 634 | Self {
|
390 635 | default_string,
|
391 636 | default_boolean,
|
392 637 | default_list,
|
393 638 | default_document_map,
|
394 639 | default_document_string,
|
395 640 | default_document_boolean,
|
396 641 | default_document_list,
|
397 - | default_null_document,
|
398 642 | default_timestamp,
|
399 643 | default_blob,
|
400 644 | default_byte,
|
401 645 | default_short,
|
402 646 | default_integer,
|
403 647 | default_long,
|
404 648 | default_float,
|
405 649 | default_double,
|
406 650 | default_map,
|
407 651 | default_enum,
|
408 652 | default_int_enum,
|
409 653 | empty_string,
|
410 654 | false_boolean,
|
411 655 | empty_blob,
|
412 656 | zero_byte,
|
413 657 | zero_short,
|
414 658 | zero_integer,
|
415 659 | zero_long,
|
416 660 | zero_float,
|
417 661 | zero_double,
|
662 + | default_null_document,
|
418 663 | }
|
419 664 | }
|
420 665 | fn __repr__(&self) -> String {
|
421 666 | format!("{self:?}")
|
422 667 | }
|
423 668 | fn __str__(&self) -> String {
|
424 669 | format!("{self:?}")
|
425 670 | }
|
426 671 | }
|
672 + | /* PythonServerStructureGenerator.kt:111 */
|
427 673 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<OperationWithDefaultsOutput> {
|
428 674 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
429 675 | ob.extract::<OperationWithDefaultsOutput>().map(Box::new)
|
430 676 | }
|
431 677 | }
|
432 678 |
|
433 679 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<OperationWithDefaultsOutput> {
|
434 680 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
435 681 | (*self).into_py(py)
|
436 682 | }
|
437 683 | }
|
684 + | /* ServerCodegenVisitor.kt:370 */
|
438 685 | impl OperationWithDefaultsOutput {
|
439 - | /// Creates a new builder-style object to manufacture [`OperationWithDefaultsOutput`](crate::output::OperationWithDefaultsOutput).
|
686 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`OperationWithDefaultsOutput`](crate::output::OperationWithDefaultsOutput).
|
687 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
440 688 | pub fn builder() -> crate::output::operation_with_defaults_output::Builder {
|
689 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
441 690 | crate::output::operation_with_defaults_output::Builder::default()
|
691 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
442 692 | }
|
693 + | /* ServerCodegenVisitor.kt:370 */
|
443 694 | }
|
444 695 |
|
696 + | /* RustType.kt:516 */
|
445 697 | #[::pyo3::pyclass]
|
698 + | /* PythonServerStructureGenerator.kt:63 */
|
446 699 | /// :rtype None:
|
700 + | /* StructureGenerator.kt:197 */
|
447 701 | #[allow(missing_docs)] // documentation missing in model
|
702 + | /* RustType.kt:516 */
|
448 703 | #[derive(
|
449 704 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
450 705 | )]
|
451 - | pub struct ContentTypeParametersOutput {}
|
706 + | pub /* StructureGenerator.kt:201 */ struct ContentTypeParametersOutput {/* StructureGenerator.kt:201 */}
|
707 + | /* RustType.kt:516 */
|
452 708 | #[allow(clippy::new_without_default)]
|
709 + | /* RustType.kt:516 */
|
453 710 | #[allow(clippy::too_many_arguments)]
|
711 + | /* RustType.kt:516 */
|
454 712 | #[::pyo3::pymethods]
|
713 + | /* PythonServerStructureGenerator.kt:88 */
|
455 714 | impl ContentTypeParametersOutput {
|
456 715 | #[new]
|
457 716 | pub fn new() -> Self {
|
458 717 | Self {}
|
459 718 | }
|
460 719 | fn __repr__(&self) -> String {
|
461 720 | format!("{self:?}")
|
462 721 | }
|
463 722 | fn __str__(&self) -> String {
|
464 723 | format!("{self:?}")
|
465 724 | }
|
466 725 | }
|
726 + | /* PythonServerStructureGenerator.kt:111 */
|
467 727 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<ContentTypeParametersOutput> {
|
468 728 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
469 729 | ob.extract::<ContentTypeParametersOutput>().map(Box::new)
|
470 730 | }
|
471 731 | }
|
472 732 |
|
473 733 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<ContentTypeParametersOutput> {
|
474 734 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
475 735 | (*self).into_py(py)
|
476 736 | }
|
477 737 | }
|
738 + | /* ServerCodegenVisitor.kt:370 */
|
478 739 | impl ContentTypeParametersOutput {
|
479 - | /// Creates a new builder-style object to manufacture [`ContentTypeParametersOutput`](crate::output::ContentTypeParametersOutput).
|
740 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`ContentTypeParametersOutput`](crate::output::ContentTypeParametersOutput).
|
741 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
480 742 | pub fn builder() -> crate::output::content_type_parameters_output::Builder {
|
743 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
481 744 | crate::output::content_type_parameters_output::Builder::default()
|
745 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
482 746 | }
|
747 + | /* ServerCodegenVisitor.kt:370 */
|
483 748 | }
|
484 749 |
|
750 + | /* RustType.kt:516 */
|
485 751 | #[::pyo3::pyclass]
|
752 + | /* PythonServerStructureGenerator.kt:63 */
|
486 753 | /// :rtype None:
|
754 + | /* StructureGenerator.kt:197 */
|
487 755 | #[allow(missing_docs)] // documentation missing in model
|
756 + | /* RustType.kt:516 */
|
488 757 | #[derive(
|
489 758 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
490 759 | )]
|
491 - | pub struct PutWithContentEncodingOutput {}
|
760 + | pub /* StructureGenerator.kt:201 */ struct PutWithContentEncodingOutput {/* StructureGenerator.kt:201 */}
|
761 + | /* RustType.kt:516 */
|
492 762 | #[allow(clippy::new_without_default)]
|
763 + | /* RustType.kt:516 */
|
493 764 | #[allow(clippy::too_many_arguments)]
|
765 + | /* RustType.kt:516 */
|
494 766 | #[::pyo3::pymethods]
|
767 + | /* PythonServerStructureGenerator.kt:88 */
|
495 768 | impl PutWithContentEncodingOutput {
|
496 769 | #[new]
|
497 770 | pub fn new() -> Self {
|
498 771 | Self {}
|
499 772 | }
|
500 773 | fn __repr__(&self) -> String {
|
501 774 | format!("{self:?}")
|
502 775 | }
|
503 776 | fn __str__(&self) -> String {
|
504 777 | format!("{self:?}")
|
505 778 | }
|
506 779 | }
|
780 + | /* PythonServerStructureGenerator.kt:111 */
|
507 781 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<PutWithContentEncodingOutput> {
|
508 782 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
509 783 | ob.extract::<PutWithContentEncodingOutput>().map(Box::new)
|
510 784 | }
|
511 785 | }
|
512 786 |
|
513 787 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<PutWithContentEncodingOutput> {
|
514 788 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
515 789 | (*self).into_py(py)
|
516 790 | }
|
517 791 | }
|
792 + | /* ServerCodegenVisitor.kt:370 */
|
518 793 | impl PutWithContentEncodingOutput {
|
519 - | /// Creates a new builder-style object to manufacture [`PutWithContentEncodingOutput`](crate::output::PutWithContentEncodingOutput).
|
794 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`PutWithContentEncodingOutput`](crate::output::PutWithContentEncodingOutput).
|
795 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
520 796 | pub fn builder() -> crate::output::put_with_content_encoding_output::Builder {
|
797 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
521 798 | crate::output::put_with_content_encoding_output::Builder::default()
|
799 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
522 800 | }
|
801 + | /* ServerCodegenVisitor.kt:370 */
|
523 802 | }
|
524 803 |
|
804 + | /* RustType.kt:516 */
|
525 805 | #[::pyo3::pyclass]
|
806 + | /* PythonServerStructureGenerator.kt:63 */
|
526 807 | /// :param datetime typing.Optional\[rest_json.types.DateTime\]:
|
527 808 | /// :rtype None:
|
809 + | /* StructureGenerator.kt:197 */
|
528 810 | #[allow(missing_docs)] // documentation missing in model
|
811 + | /* RustType.kt:516 */
|
529 812 | #[derive(
|
530 813 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
531 814 | )]
|
532 - | pub struct FractionalSecondsOutput {
|
815 + | pub /* StructureGenerator.kt:201 */ struct FractionalSecondsOutput {
|
816 + | /* RustType.kt:516 */
|
533 817 | #[pyo3(get, set)]
|
818 + | /* PythonServerStructureGenerator.kt:80 */
|
534 819 | /// :type typing.Optional\[rest_json.types.DateTime\]:
|
820 + | /* StructureGenerator.kt:231 */
|
535 821 | #[allow(missing_docs)] // documentation missing in model
|
536 822 | pub datetime: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
823 + | /* StructureGenerator.kt:201 */
|
537 824 | }
|
825 + | /* StructureGenerator.kt:135 */
|
538 826 | impl FractionalSecondsOutput {
|
827 + | /* StructureGenerator.kt:231 */
|
539 828 | #[allow(missing_docs)] // documentation missing in model
|
829 + | /* StructureGenerator.kt:166 */
|
540 830 | pub fn datetime(
|
541 831 | &self,
|
542 832 | ) -> ::std::option::Option<&::aws_smithy_http_server_python::types::DateTime> {
|
833 + | /* StructureGenerator.kt:170 */
|
543 834 | self.datetime.as_ref()
|
835 + | /* StructureGenerator.kt:166 */
|
544 836 | }
|
837 + | /* StructureGenerator.kt:135 */
|
545 838 | }
|
839 + | /* RustType.kt:516 */
|
546 840 | #[allow(clippy::new_without_default)]
|
841 + | /* RustType.kt:516 */
|
547 842 | #[allow(clippy::too_many_arguments)]
|
843 + | /* RustType.kt:516 */
|
548 844 | #[::pyo3::pymethods]
|
845 + | /* PythonServerStructureGenerator.kt:88 */
|
549 846 | impl FractionalSecondsOutput {
|
550 847 | #[new]
|
551 848 | pub fn new(
|
552 849 | datetime: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
553 850 | ) -> Self {
|
554 851 | Self { datetime }
|
555 852 | }
|
556 853 | fn __repr__(&self) -> String {
|
557 854 | format!("{self:?}")
|
558 855 | }
|
559 856 | fn __str__(&self) -> String {
|
560 857 | format!("{self:?}")
|
561 858 | }
|
562 859 | }
|
860 + | /* PythonServerStructureGenerator.kt:111 */
|
563 861 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<FractionalSecondsOutput> {
|
564 862 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
565 863 | ob.extract::<FractionalSecondsOutput>().map(Box::new)
|
566 864 | }
|
567 865 | }
|
568 866 |
|
569 867 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<FractionalSecondsOutput> {
|
570 868 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
571 869 | (*self).into_py(py)
|
572 870 | }
|
573 871 | }
|
872 + | /* ServerCodegenVisitor.kt:370 */
|
574 873 | impl FractionalSecondsOutput {
|
575 - | /// Creates a new builder-style object to manufacture [`FractionalSecondsOutput`](crate::output::FractionalSecondsOutput).
|
874 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`FractionalSecondsOutput`](crate::output::FractionalSecondsOutput).
|
875 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
576 876 | pub fn builder() -> crate::output::fractional_seconds_output::Builder {
|
877 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
577 878 | crate::output::fractional_seconds_output::Builder::default()
|
879 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
578 880 | }
|
881 + | /* ServerCodegenVisitor.kt:370 */
|
579 882 | }
|
580 883 |
|
884 + | /* RustType.kt:516 */
|
581 885 | #[::pyo3::pyclass]
|
886 + | /* PythonServerStructureGenerator.kt:63 */
|
582 887 | /// :param datetime typing.Optional\[rest_json.types.DateTime\]:
|
583 888 | /// :rtype None:
|
889 + | /* StructureGenerator.kt:197 */
|
584 890 | #[allow(missing_docs)] // documentation missing in model
|
891 + | /* RustType.kt:516 */
|
585 892 | #[derive(
|
586 893 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
587 894 | )]
|
588 - | pub struct DatetimeOffsetsOutput {
|
895 + | pub /* StructureGenerator.kt:201 */ struct DatetimeOffsetsOutput {
|
896 + | /* RustType.kt:516 */
|
589 897 | #[pyo3(get, set)]
|
898 + | /* PythonServerStructureGenerator.kt:80 */
|
590 899 | /// :type typing.Optional\[rest_json.types.DateTime\]:
|
900 + | /* StructureGenerator.kt:231 */
|
591 901 | #[allow(missing_docs)] // documentation missing in model
|
592 902 | pub datetime: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
903 + | /* StructureGenerator.kt:201 */
|
593 904 | }
|
905 + | /* StructureGenerator.kt:135 */
|
594 906 | impl DatetimeOffsetsOutput {
|
907 + | /* StructureGenerator.kt:231 */
|
595 908 | #[allow(missing_docs)] // documentation missing in model
|
909 + | /* StructureGenerator.kt:166 */
|
596 910 | pub fn datetime(
|
597 911 | &self,
|
598 912 | ) -> ::std::option::Option<&::aws_smithy_http_server_python::types::DateTime> {
|
913 + | /* StructureGenerator.kt:170 */
|
599 914 | self.datetime.as_ref()
|
915 + | /* StructureGenerator.kt:166 */
|
600 916 | }
|
917 + | /* StructureGenerator.kt:135 */
|
601 918 | }
|
919 + | /* RustType.kt:516 */
|
602 920 | #[allow(clippy::new_without_default)]
|
921 + | /* RustType.kt:516 */
|
603 922 | #[allow(clippy::too_many_arguments)]
|
923 + | /* RustType.kt:516 */
|
604 924 | #[::pyo3::pymethods]
|
925 + | /* PythonServerStructureGenerator.kt:88 */
|
605 926 | impl DatetimeOffsetsOutput {
|
606 927 | #[new]
|
607 928 | pub fn new(
|
608 929 | datetime: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
609 930 | ) -> Self {
|
610 931 | Self { datetime }
|
611 932 | }
|
612 933 | fn __repr__(&self) -> String {
|
613 934 | format!("{self:?}")
|
614 935 | }
|
615 936 | fn __str__(&self) -> String {
|
616 937 | format!("{self:?}")
|
617 938 | }
|
618 939 | }
|
940 + | /* PythonServerStructureGenerator.kt:111 */
|
619 941 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<DatetimeOffsetsOutput> {
|
620 942 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
621 943 | ob.extract::<DatetimeOffsetsOutput>().map(Box::new)
|
622 944 | }
|
623 945 | }
|
624 946 |
|
625 947 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<DatetimeOffsetsOutput> {
|
626 948 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
627 949 | (*self).into_py(py)
|
628 950 | }
|
629 951 | }
|
952 + | /* ServerCodegenVisitor.kt:370 */
|
630 953 | impl DatetimeOffsetsOutput {
|
631 - | /// Creates a new builder-style object to manufacture [`DatetimeOffsetsOutput`](crate::output::DatetimeOffsetsOutput).
|
954 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`DatetimeOffsetsOutput`](crate::output::DatetimeOffsetsOutput).
|
955 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
632 956 | pub fn builder() -> crate::output::datetime_offsets_output::Builder {
|
957 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
633 958 | crate::output::datetime_offsets_output::Builder::default()
|
959 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
634 960 | }
|
961 + | /* ServerCodegenVisitor.kt:370 */
|
635 962 | }
|
636 963 |
|
964 + | /* RustType.kt:516 */
|
637 965 | #[::pyo3::pyclass]
|
966 + | /* PythonServerStructureGenerator.kt:63 */
|
638 967 | /// :param test_id typing.Optional\[str\]:
|
639 968 | /// :rtype None:
|
969 + | /* StructureGenerator.kt:197 */
|
640 970 | #[allow(missing_docs)] // documentation missing in model
|
971 + | /* RustType.kt:516 */
|
641 972 | #[derive(
|
642 973 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
643 974 | )]
|
644 - | pub struct TestPostNoInputNoPayloadOutput {
|
975 + | pub /* StructureGenerator.kt:201 */ struct TestPostNoInputNoPayloadOutput {
|
976 + | /* RustType.kt:516 */
|
645 977 | #[pyo3(get, set)]
|
978 + | /* PythonServerStructureGenerator.kt:80 */
|
646 979 | /// :type typing.Optional\[str\]:
|
980 + | /* StructureGenerator.kt:231 */
|
647 981 | #[allow(missing_docs)] // documentation missing in model
|
648 982 | pub test_id: ::std::option::Option<::std::string::String>,
|
983 + | /* StructureGenerator.kt:201 */
|
649 984 | }
|
985 + | /* StructureGenerator.kt:135 */
|
650 986 | impl TestPostNoInputNoPayloadOutput {
|
987 + | /* StructureGenerator.kt:231 */
|
651 988 | #[allow(missing_docs)] // documentation missing in model
|
989 + | /* StructureGenerator.kt:166 */
|
652 990 | pub fn test_id(&self) -> ::std::option::Option<&str> {
|
991 + | /* StructureGenerator.kt:169 */
|
653 992 | self.test_id.as_deref()
|
993 + | /* StructureGenerator.kt:166 */
|
654 994 | }
|
995 + | /* StructureGenerator.kt:135 */
|
655 996 | }
|
997 + | /* RustType.kt:516 */
|
656 998 | #[allow(clippy::new_without_default)]
|
999 + | /* RustType.kt:516 */
|
657 1000 | #[allow(clippy::too_many_arguments)]
|
1001 + | /* RustType.kt:516 */
|
658 1002 | #[::pyo3::pymethods]
|
1003 + | /* PythonServerStructureGenerator.kt:88 */
|
659 1004 | impl TestPostNoInputNoPayloadOutput {
|
660 1005 | #[new]
|
661 1006 | pub fn new(test_id: ::std::option::Option<::std::string::String>) -> Self {
|
662 1007 | Self { test_id }
|
663 1008 | }
|
664 1009 | fn __repr__(&self) -> String {
|
665 1010 | format!("{self:?}")
|
666 1011 | }
|
667 1012 | fn __str__(&self) -> String {
|
668 1013 | format!("{self:?}")
|
669 1014 | }
|
670 1015 | }
|
1016 + | /* PythonServerStructureGenerator.kt:111 */
|
671 1017 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<TestPostNoInputNoPayloadOutput> {
|
672 1018 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
673 1019 | ob.extract::<TestPostNoInputNoPayloadOutput>().map(Box::new)
|
674 1020 | }
|
675 1021 | }
|
676 1022 |
|
677 1023 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<TestPostNoInputNoPayloadOutput> {
|
678 1024 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
679 1025 | (*self).into_py(py)
|
680 1026 | }
|
681 1027 | }
|
1028 + | /* ServerCodegenVisitor.kt:370 */
|
682 1029 | impl TestPostNoInputNoPayloadOutput {
|
683 - | /// Creates a new builder-style object to manufacture [`TestPostNoInputNoPayloadOutput`](crate::output::TestPostNoInputNoPayloadOutput).
|
1030 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`TestPostNoInputNoPayloadOutput`](crate::output::TestPostNoInputNoPayloadOutput).
|
1031 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
684 1032 | pub fn builder() -> crate::output::test_post_no_input_no_payload_output::Builder {
|
1033 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
685 1034 | crate::output::test_post_no_input_no_payload_output::Builder::default()
|
1035 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
686 1036 | }
|
1037 + | /* ServerCodegenVisitor.kt:370 */
|
687 1038 | }
|
688 1039 |
|
1040 + | /* RustType.kt:516 */
|
689 1041 | #[::pyo3::pyclass]
|
1042 + | /* PythonServerStructureGenerator.kt:63 */
|
690 1043 | /// :param test_id typing.Optional\[str\]:
|
691 1044 | /// :rtype None:
|
1045 + | /* StructureGenerator.kt:197 */
|
692 1046 | #[allow(missing_docs)] // documentation missing in model
|
1047 + | /* RustType.kt:516 */
|
693 1048 | #[derive(
|
694 1049 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
695 1050 | )]
|
696 - | pub struct TestGetNoInputNoPayloadOutput {
|
1051 + | pub /* StructureGenerator.kt:201 */ struct TestGetNoInputNoPayloadOutput {
|
1052 + | /* RustType.kt:516 */
|
697 1053 | #[pyo3(get, set)]
|
1054 + | /* PythonServerStructureGenerator.kt:80 */
|
698 1055 | /// :type typing.Optional\[str\]:
|
1056 + | /* StructureGenerator.kt:231 */
|
699 1057 | #[allow(missing_docs)] // documentation missing in model
|
700 1058 | pub test_id: ::std::option::Option<::std::string::String>,
|
1059 + | /* StructureGenerator.kt:201 */
|
701 1060 | }
|
1061 + | /* StructureGenerator.kt:135 */
|
702 1062 | impl TestGetNoInputNoPayloadOutput {
|
1063 + | /* StructureGenerator.kt:231 */
|
703 1064 | #[allow(missing_docs)] // documentation missing in model
|
1065 + | /* StructureGenerator.kt:166 */
|
704 1066 | pub fn test_id(&self) -> ::std::option::Option<&str> {
|
1067 + | /* StructureGenerator.kt:169 */
|
705 1068 | self.test_id.as_deref()
|
1069 + | /* StructureGenerator.kt:166 */
|
706 1070 | }
|
1071 + | /* StructureGenerator.kt:135 */
|
707 1072 | }
|
1073 + | /* RustType.kt:516 */
|
708 1074 | #[allow(clippy::new_without_default)]
|
1075 + | /* RustType.kt:516 */
|
709 1076 | #[allow(clippy::too_many_arguments)]
|
1077 + | /* RustType.kt:516 */
|
710 1078 | #[::pyo3::pymethods]
|
1079 + | /* PythonServerStructureGenerator.kt:88 */
|
711 1080 | impl TestGetNoInputNoPayloadOutput {
|
712 1081 | #[new]
|
713 1082 | pub fn new(test_id: ::std::option::Option<::std::string::String>) -> Self {
|
714 1083 | Self { test_id }
|
715 1084 | }
|
716 1085 | fn __repr__(&self) -> String {
|
717 1086 | format!("{self:?}")
|
718 1087 | }
|
719 1088 | fn __str__(&self) -> String {
|
720 1089 | format!("{self:?}")
|
721 1090 | }
|
722 1091 | }
|
1092 + | /* PythonServerStructureGenerator.kt:111 */
|
723 1093 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<TestGetNoInputNoPayloadOutput> {
|
724 1094 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
725 1095 | ob.extract::<TestGetNoInputNoPayloadOutput>().map(Box::new)
|
726 1096 | }
|
727 1097 | }
|
728 1098 |
|
729 1099 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<TestGetNoInputNoPayloadOutput> {
|
730 1100 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
731 1101 | (*self).into_py(py)
|
732 1102 | }
|
733 1103 | }
|
1104 + | /* ServerCodegenVisitor.kt:370 */
|
734 1105 | impl TestGetNoInputNoPayloadOutput {
|
735 - | /// Creates a new builder-style object to manufacture [`TestGetNoInputNoPayloadOutput`](crate::output::TestGetNoInputNoPayloadOutput).
|
1106 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`TestGetNoInputNoPayloadOutput`](crate::output::TestGetNoInputNoPayloadOutput).
|
1107 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
736 1108 | pub fn builder() -> crate::output::test_get_no_input_no_payload_output::Builder {
|
1109 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
737 1110 | crate::output::test_get_no_input_no_payload_output::Builder::default()
|
1111 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
738 1112 | }
|
1113 + | /* ServerCodegenVisitor.kt:370 */
|
739 1114 | }
|
740 1115 |
|
1116 + | /* RustType.kt:516 */
|
741 1117 | #[::pyo3::pyclass]
|
1118 + | /* PythonServerStructureGenerator.kt:63 */
|
742 1119 | /// :param test_id typing.Optional\[str\]:
|
743 1120 | /// :rtype None:
|
1121 + | /* StructureGenerator.kt:197 */
|
744 1122 | #[allow(missing_docs)] // documentation missing in model
|
1123 + | /* RustType.kt:516 */
|
745 1124 | #[derive(
|
746 1125 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
747 1126 | )]
|
748 - | pub struct TestPostNoPayloadOutput {
|
1127 + | pub /* StructureGenerator.kt:201 */ struct TestPostNoPayloadOutput {
|
1128 + | /* RustType.kt:516 */
|
749 1129 | #[pyo3(get, set)]
|
1130 + | /* PythonServerStructureGenerator.kt:80 */
|
750 1131 | /// :type typing.Optional\[str\]:
|
1132 + | /* StructureGenerator.kt:231 */
|
751 1133 | #[allow(missing_docs)] // documentation missing in model
|
752 1134 | pub test_id: ::std::option::Option<::std::string::String>,
|
1135 + | /* StructureGenerator.kt:201 */
|
753 1136 | }
|
1137 + | /* StructureGenerator.kt:135 */
|
754 1138 | impl TestPostNoPayloadOutput {
|
1139 + | /* StructureGenerator.kt:231 */
|
755 1140 | #[allow(missing_docs)] // documentation missing in model
|
1141 + | /* StructureGenerator.kt:166 */
|
756 1142 | pub fn test_id(&self) -> ::std::option::Option<&str> {
|
1143 + | /* StructureGenerator.kt:169 */
|
757 1144 | self.test_id.as_deref()
|
1145 + | /* StructureGenerator.kt:166 */
|
758 1146 | }
|
1147 + | /* StructureGenerator.kt:135 */
|
759 1148 | }
|
1149 + | /* RustType.kt:516 */
|
760 1150 | #[allow(clippy::new_without_default)]
|
1151 + | /* RustType.kt:516 */
|
761 1152 | #[allow(clippy::too_many_arguments)]
|
1153 + | /* RustType.kt:516 */
|
762 1154 | #[::pyo3::pymethods]
|
1155 + | /* PythonServerStructureGenerator.kt:88 */
|
763 1156 | impl TestPostNoPayloadOutput {
|
764 1157 | #[new]
|
765 1158 | pub fn new(test_id: ::std::option::Option<::std::string::String>) -> Self {
|
766 1159 | Self { test_id }
|
767 1160 | }
|
768 1161 | fn __repr__(&self) -> String {
|
769 1162 | format!("{self:?}")
|
770 1163 | }
|
771 1164 | fn __str__(&self) -> String {
|
772 1165 | format!("{self:?}")
|
773 1166 | }
|
774 1167 | }
|
1168 + | /* PythonServerStructureGenerator.kt:111 */
|
775 1169 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<TestPostNoPayloadOutput> {
|
776 1170 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
777 1171 | ob.extract::<TestPostNoPayloadOutput>().map(Box::new)
|
778 1172 | }
|
779 1173 | }
|
780 1174 |
|
781 1175 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<TestPostNoPayloadOutput> {
|
782 1176 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
783 1177 | (*self).into_py(py)
|
784 1178 | }
|
785 1179 | }
|
1180 + | /* ServerCodegenVisitor.kt:370 */
|
786 1181 | impl TestPostNoPayloadOutput {
|
787 - | /// Creates a new builder-style object to manufacture [`TestPostNoPayloadOutput`](crate::output::TestPostNoPayloadOutput).
|
1182 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`TestPostNoPayloadOutput`](crate::output::TestPostNoPayloadOutput).
|
1183 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
788 1184 | pub fn builder() -> crate::output::test_post_no_payload_output::Builder {
|
1185 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
789 1186 | crate::output::test_post_no_payload_output::Builder::default()
|
1187 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
790 1188 | }
|
1189 + | /* ServerCodegenVisitor.kt:370 */
|
791 1190 | }
|
792 1191 |
|
1192 + | /* RustType.kt:516 */
|
793 1193 | #[::pyo3::pyclass]
|
1194 + | /* PythonServerStructureGenerator.kt:63 */
|
794 1195 | /// :param test_id typing.Optional\[str\]:
|
795 1196 | /// :rtype None:
|
1197 + | /* StructureGenerator.kt:197 */
|
796 1198 | #[allow(missing_docs)] // documentation missing in model
|
1199 + | /* RustType.kt:516 */
|
797 1200 | #[derive(
|
798 1201 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
799 1202 | )]
|
800 - | pub struct TestGetNoPayloadOutput {
|
1203 + | pub /* StructureGenerator.kt:201 */ struct TestGetNoPayloadOutput {
|
1204 + | /* RustType.kt:516 */
|
801 1205 | #[pyo3(get, set)]
|
1206 + | /* PythonServerStructureGenerator.kt:80 */
|
802 1207 | /// :type typing.Optional\[str\]:
|
1208 + | /* StructureGenerator.kt:231 */
|
803 1209 | #[allow(missing_docs)] // documentation missing in model
|
804 1210 | pub test_id: ::std::option::Option<::std::string::String>,
|
1211 + | /* StructureGenerator.kt:201 */
|
805 1212 | }
|
1213 + | /* StructureGenerator.kt:135 */
|
806 1214 | impl TestGetNoPayloadOutput {
|
1215 + | /* StructureGenerator.kt:231 */
|
807 1216 | #[allow(missing_docs)] // documentation missing in model
|
1217 + | /* StructureGenerator.kt:166 */
|
808 1218 | pub fn test_id(&self) -> ::std::option::Option<&str> {
|
1219 + | /* StructureGenerator.kt:169 */
|
809 1220 | self.test_id.as_deref()
|
1221 + | /* StructureGenerator.kt:166 */
|
810 1222 | }
|
1223 + | /* StructureGenerator.kt:135 */
|
811 1224 | }
|
1225 + | /* RustType.kt:516 */
|
812 1226 | #[allow(clippy::new_without_default)]
|
1227 + | /* RustType.kt:516 */
|
813 1228 | #[allow(clippy::too_many_arguments)]
|
1229 + | /* RustType.kt:516 */
|
814 1230 | #[::pyo3::pymethods]
|
1231 + | /* PythonServerStructureGenerator.kt:88 */
|
815 1232 | impl TestGetNoPayloadOutput {
|
816 1233 | #[new]
|
817 1234 | pub fn new(test_id: ::std::option::Option<::std::string::String>) -> Self {
|
818 1235 | Self { test_id }
|
819 1236 | }
|
820 1237 | fn __repr__(&self) -> String {
|
821 1238 | format!("{self:?}")
|
822 1239 | }
|
823 1240 | fn __str__(&self) -> String {
|
824 1241 | format!("{self:?}")
|
825 1242 | }
|
826 1243 | }
|
1244 + | /* PythonServerStructureGenerator.kt:111 */
|
827 1245 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<TestGetNoPayloadOutput> {
|
828 1246 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
829 1247 | ob.extract::<TestGetNoPayloadOutput>().map(Box::new)
|
830 1248 | }
|
831 1249 | }
|
832 1250 |
|
833 1251 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<TestGetNoPayloadOutput> {
|
834 1252 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
835 1253 | (*self).into_py(py)
|
836 1254 | }
|
837 1255 | }
|
1256 + | /* ServerCodegenVisitor.kt:370 */
|
838 1257 | impl TestGetNoPayloadOutput {
|
839 - | /// Creates a new builder-style object to manufacture [`TestGetNoPayloadOutput`](crate::output::TestGetNoPayloadOutput).
|
1258 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`TestGetNoPayloadOutput`](crate::output::TestGetNoPayloadOutput).
|
1259 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
840 1260 | pub fn builder() -> crate::output::test_get_no_payload_output::Builder {
|
1261 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
841 1262 | crate::output::test_get_no_payload_output::Builder::default()
|
1263 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
842 1264 | }
|
1265 + | /* ServerCodegenVisitor.kt:370 */
|
843 1266 | }
|
844 1267 |
|
1268 + | /* RustType.kt:516 */
|
845 1269 | #[::pyo3::pyclass]
|
1270 + | /* PythonServerStructureGenerator.kt:63 */
|
846 1271 | /// :param content_type typing.Optional\[str\]:
|
847 1272 | /// :param data typing.Optional\[rest_json.types.Blob\]:
|
848 1273 | /// :rtype None:
|
1274 + | /* StructureGenerator.kt:197 */
|
849 1275 | #[allow(missing_docs)] // documentation missing in model
|
1276 + | /* RustType.kt:516 */
|
850 1277 | #[derive(
|
851 1278 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
852 1279 | )]
|
853 - | pub struct TestPayloadBlobOutput {
|
1280 + | pub /* StructureGenerator.kt:201 */ struct TestPayloadBlobOutput {
|
1281 + | /* RustType.kt:516 */
|
854 1282 | #[pyo3(get, set)]
|
1283 + | /* PythonServerStructureGenerator.kt:80 */
|
855 1284 | /// :type typing.Optional\[str\]:
|
1285 + | /* StructureGenerator.kt:231 */
|
856 1286 | #[allow(missing_docs)] // documentation missing in model
|
857 1287 | pub content_type: ::std::option::Option<::std::string::String>,
|
1288 + | /* RustType.kt:516 */
|
858 1289 | #[pyo3(get, set)]
|
1290 + | /* PythonServerStructureGenerator.kt:80 */
|
859 1291 | /// :type typing.Optional\[rest_json.types.Blob\]:
|
1292 + | /* StructureGenerator.kt:231 */
|
860 1293 | #[allow(missing_docs)] // documentation missing in model
|
861 1294 | pub data: ::std::option::Option<::aws_smithy_http_server_python::types::Blob>,
|
1295 + | /* StructureGenerator.kt:201 */
|
862 1296 | }
|
1297 + | /* StructureGenerator.kt:135 */
|
863 1298 | impl TestPayloadBlobOutput {
|
1299 + | /* StructureGenerator.kt:231 */
|
864 1300 | #[allow(missing_docs)] // documentation missing in model
|
1301 + | /* StructureGenerator.kt:166 */
|
865 1302 | pub fn content_type(&self) -> ::std::option::Option<&str> {
|
1303 + | /* StructureGenerator.kt:169 */
|
866 1304 | self.content_type.as_deref()
|
1305 + | /* StructureGenerator.kt:166 */
|
867 1306 | }
|
1307 + | /* StructureGenerator.kt:231 */
|
868 1308 | #[allow(missing_docs)] // documentation missing in model
|
1309 + | /* StructureGenerator.kt:166 */
|
869 1310 | pub fn data(&self) -> ::std::option::Option<&::aws_smithy_http_server_python::types::Blob> {
|
1311 + | /* StructureGenerator.kt:170 */
|
870 1312 | self.data.as_ref()
|
1313 + | /* StructureGenerator.kt:166 */
|
871 1314 | }
|
1315 + | /* StructureGenerator.kt:135 */
|
872 1316 | }
|
1317 + | /* RustType.kt:516 */
|
873 1318 | #[allow(clippy::new_without_default)]
|
1319 + | /* RustType.kt:516 */
|
874 1320 | #[allow(clippy::too_many_arguments)]
|
1321 + | /* RustType.kt:516 */
|
875 1322 | #[::pyo3::pymethods]
|
1323 + | /* PythonServerStructureGenerator.kt:88 */
|
876 1324 | impl TestPayloadBlobOutput {
|
877 1325 | #[new]
|
878 1326 | pub fn new(
|
879 1327 | content_type: ::std::option::Option<::std::string::String>,
|
880 1328 | data: ::std::option::Option<::aws_smithy_http_server_python::types::Blob>,
|
881 1329 | ) -> Self {
|
882 1330 | Self { content_type, data }
|
883 1331 | }
|
884 1332 | fn __repr__(&self) -> String {
|
885 1333 | format!("{self:?}")
|
886 1334 | }
|
887 1335 | fn __str__(&self) -> String {
|
888 1336 | format!("{self:?}")
|
889 1337 | }
|
890 1338 | }
|
1339 + | /* PythonServerStructureGenerator.kt:111 */
|
891 1340 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<TestPayloadBlobOutput> {
|
892 1341 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
893 1342 | ob.extract::<TestPayloadBlobOutput>().map(Box::new)
|
894 1343 | }
|
895 1344 | }
|
896 1345 |
|
897 1346 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<TestPayloadBlobOutput> {
|
898 1347 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
899 1348 | (*self).into_py(py)
|
900 1349 | }
|
901 1350 | }
|
1351 + | /* ServerCodegenVisitor.kt:370 */
|
902 1352 | impl TestPayloadBlobOutput {
|
903 - | /// Creates a new builder-style object to manufacture [`TestPayloadBlobOutput`](crate::output::TestPayloadBlobOutput).
|
1353 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`TestPayloadBlobOutput`](crate::output::TestPayloadBlobOutput).
|
1354 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
904 1355 | pub fn builder() -> crate::output::test_payload_blob_output::Builder {
|
1356 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
905 1357 | crate::output::test_payload_blob_output::Builder::default()
|
1358 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
906 1359 | }
|
1360 + | /* ServerCodegenVisitor.kt:370 */
|
907 1361 | }
|
908 1362 |
|
1363 + | /* RustType.kt:516 */
|
909 1364 | #[::pyo3::pyclass]
|
1365 + | /* PythonServerStructureGenerator.kt:63 */
|
910 1366 | /// :param test_id typing.Optional\[str\]:
|
911 1367 | /// :param payload_config typing.Optional\[rest_json.model.PayloadConfig\]:
|
912 1368 | /// :rtype None:
|
1369 + | /* StructureGenerator.kt:197 */
|
913 1370 | #[allow(missing_docs)] // documentation missing in model
|
1371 + | /* RustType.kt:516 */
|
914 1372 | #[derive(
|
915 1373 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
916 1374 | )]
|
917 - | pub struct TestPayloadStructureOutput {
|
1375 + | pub /* StructureGenerator.kt:201 */ struct TestPayloadStructureOutput {
|
1376 + | /* RustType.kt:516 */
|
918 1377 | #[pyo3(get, set)]
|
1378 + | /* PythonServerStructureGenerator.kt:80 */
|
919 1379 | /// :type typing.Optional\[str\]:
|
1380 + | /* StructureGenerator.kt:231 */
|
920 1381 | #[allow(missing_docs)] // documentation missing in model
|
921 1382 | pub test_id: ::std::option::Option<::std::string::String>,
|
1383 + | /* RustType.kt:516 */
|
922 1384 | #[pyo3(get, set)]
|
1385 + | /* PythonServerStructureGenerator.kt:80 */
|
923 1386 | /// :type typing.Optional\[rest_json.model.PayloadConfig\]:
|
1387 + | /* StructureGenerator.kt:231 */
|
924 1388 | #[allow(missing_docs)] // documentation missing in model
|
925 1389 | pub payload_config: ::std::option::Option<crate::model::PayloadConfig>,
|
1390 + | /* StructureGenerator.kt:201 */
|
926 1391 | }
|
1392 + | /* StructureGenerator.kt:135 */
|
927 1393 | impl TestPayloadStructureOutput {
|
1394 + | /* StructureGenerator.kt:231 */
|
928 1395 | #[allow(missing_docs)] // documentation missing in model
|
1396 + | /* StructureGenerator.kt:166 */
|
929 1397 | pub fn test_id(&self) -> ::std::option::Option<&str> {
|
1398 + | /* StructureGenerator.kt:169 */
|
930 1399 | self.test_id.as_deref()
|
1400 + | /* StructureGenerator.kt:166 */
|
931 1401 | }
|
1402 + | /* StructureGenerator.kt:231 */
|
932 1403 | #[allow(missing_docs)] // documentation missing in model
|
1404 + | /* StructureGenerator.kt:166 */
|
933 1405 | pub fn payload_config(&self) -> ::std::option::Option<&crate::model::PayloadConfig> {
|
1406 + | /* StructureGenerator.kt:170 */
|
934 1407 | self.payload_config.as_ref()
|
1408 + | /* StructureGenerator.kt:166 */
|
935 1409 | }
|
1410 + | /* StructureGenerator.kt:135 */
|
936 1411 | }
|
1412 + | /* RustType.kt:516 */
|
937 1413 | #[allow(clippy::new_without_default)]
|
1414 + | /* RustType.kt:516 */
|
938 1415 | #[allow(clippy::too_many_arguments)]
|
1416 + | /* RustType.kt:516 */
|
939 1417 | #[::pyo3::pymethods]
|
1418 + | /* PythonServerStructureGenerator.kt:88 */
|
940 1419 | impl TestPayloadStructureOutput {
|
941 1420 | #[new]
|
942 1421 | pub fn new(
|
943 1422 | test_id: ::std::option::Option<::std::string::String>,
|
944 1423 | payload_config: ::std::option::Option<crate::model::PayloadConfig>,
|
945 1424 | ) -> Self {
|
946 1425 | Self {
|
947 1426 | test_id,
|
948 1427 | payload_config,
|
949 1428 | }
|
950 1429 | }
|
951 1430 | fn __repr__(&self) -> String {
|
952 1431 | format!("{self:?}")
|
953 1432 | }
|
954 1433 | fn __str__(&self) -> String {
|
955 1434 | format!("{self:?}")
|
956 1435 | }
|
957 1436 | }
|
1437 + | /* PythonServerStructureGenerator.kt:111 */
|
958 1438 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<TestPayloadStructureOutput> {
|
959 1439 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
960 1440 | ob.extract::<TestPayloadStructureOutput>().map(Box::new)
|
961 1441 | }
|
962 1442 | }
|
963 1443 |
|
964 1444 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<TestPayloadStructureOutput> {
|
965 1445 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
966 1446 | (*self).into_py(py)
|
967 1447 | }
|
968 1448 | }
|
1449 + | /* ServerCodegenVisitor.kt:370 */
|
969 1450 | impl TestPayloadStructureOutput {
|
970 - | /// Creates a new builder-style object to manufacture [`TestPayloadStructureOutput`](crate::output::TestPayloadStructureOutput).
|
1451 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`TestPayloadStructureOutput`](crate::output::TestPayloadStructureOutput).
|
1452 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
971 1453 | pub fn builder() -> crate::output::test_payload_structure_output::Builder {
|
1454 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
972 1455 | crate::output::test_payload_structure_output::Builder::default()
|
1456 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
973 1457 | }
|
1458 + | /* ServerCodegenVisitor.kt:370 */
|
974 1459 | }
|
975 1460 |
|
1461 + | /* RustType.kt:516 */
|
976 1462 | #[::pyo3::pyclass]
|
1463 + | /* PythonServerStructureGenerator.kt:63 */
|
977 1464 | /// :param test_id typing.Optional\[str\]:
|
978 1465 | /// :param test_config typing.Optional\[rest_json.model.TestConfig\]:
|
979 1466 | /// :rtype None:
|
1467 + | /* StructureGenerator.kt:197 */
|
980 1468 | #[allow(missing_docs)] // documentation missing in model
|
1469 + | /* RustType.kt:516 */
|
981 1470 | #[derive(
|
982 1471 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
983 1472 | )]
|
984 - | pub struct TestBodyStructureOutput {
|
1473 + | pub /* StructureGenerator.kt:201 */ struct TestBodyStructureOutput {
|
1474 + | /* RustType.kt:516 */
|
985 1475 | #[pyo3(get, set)]
|
1476 + | /* PythonServerStructureGenerator.kt:80 */
|
986 1477 | /// :type typing.Optional\[str\]:
|
1478 + | /* StructureGenerator.kt:231 */
|
987 1479 | #[allow(missing_docs)] // documentation missing in model
|
988 1480 | pub test_id: ::std::option::Option<::std::string::String>,
|
1481 + | /* RustType.kt:516 */
|
989 1482 | #[pyo3(get, set)]
|
1483 + | /* PythonServerStructureGenerator.kt:80 */
|
990 1484 | /// :type typing.Optional\[rest_json.model.TestConfig\]:
|
1485 + | /* StructureGenerator.kt:231 */
|
991 1486 | #[allow(missing_docs)] // documentation missing in model
|
992 1487 | pub test_config: ::std::option::Option<crate::model::TestConfig>,
|
1488 + | /* StructureGenerator.kt:201 */
|
993 1489 | }
|
1490 + | /* StructureGenerator.kt:135 */
|
994 1491 | impl TestBodyStructureOutput {
|
1492 + | /* StructureGenerator.kt:231 */
|
995 1493 | #[allow(missing_docs)] // documentation missing in model
|
1494 + | /* StructureGenerator.kt:166 */
|
996 1495 | pub fn test_id(&self) -> ::std::option::Option<&str> {
|
1496 + | /* StructureGenerator.kt:169 */
|
997 1497 | self.test_id.as_deref()
|
1498 + | /* StructureGenerator.kt:166 */
|
998 1499 | }
|
1500 + | /* StructureGenerator.kt:231 */
|
999 1501 | #[allow(missing_docs)] // documentation missing in model
|
1502 + | /* StructureGenerator.kt:166 */
|
1000 1503 | pub fn test_config(&self) -> ::std::option::Option<&crate::model::TestConfig> {
|
1504 + | /* StructureGenerator.kt:170 */
|
1001 1505 | self.test_config.as_ref()
|
1506 + | /* StructureGenerator.kt:166 */
|
1002 1507 | }
|
1508 + | /* StructureGenerator.kt:135 */
|
1003 1509 | }
|
1510 + | /* RustType.kt:516 */
|
1004 1511 | #[allow(clippy::new_without_default)]
|
1512 + | /* RustType.kt:516 */
|
1005 1513 | #[allow(clippy::too_many_arguments)]
|
1514 + | /* RustType.kt:516 */
|
1006 1515 | #[::pyo3::pymethods]
|
1516 + | /* PythonServerStructureGenerator.kt:88 */
|
1007 1517 | impl TestBodyStructureOutput {
|
1008 1518 | #[new]
|
1009 1519 | pub fn new(
|
1010 1520 | test_id: ::std::option::Option<::std::string::String>,
|
1011 1521 | test_config: ::std::option::Option<crate::model::TestConfig>,
|
1012 1522 | ) -> Self {
|
1013 1523 | Self {
|
1014 1524 | test_id,
|
1015 1525 | test_config,
|
1016 1526 | }
|
1017 1527 | }
|
1018 1528 | fn __repr__(&self) -> String {
|
1019 1529 | format!("{self:?}")
|
1020 1530 | }
|
1021 1531 | fn __str__(&self) -> String {
|
1022 1532 | format!("{self:?}")
|
1023 1533 | }
|
1024 1534 | }
|
1535 + | /* PythonServerStructureGenerator.kt:111 */
|
1025 1536 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<TestBodyStructureOutput> {
|
1026 1537 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
1027 1538 | ob.extract::<TestBodyStructureOutput>().map(Box::new)
|
1028 1539 | }
|
1029 1540 | }
|
1030 1541 |
|
1031 1542 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<TestBodyStructureOutput> {
|
1032 1543 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
1033 1544 | (*self).into_py(py)
|
1034 1545 | }
|
1035 1546 | }
|
1547 + | /* ServerCodegenVisitor.kt:370 */
|
1036 1548 | impl TestBodyStructureOutput {
|
1037 - | /// Creates a new builder-style object to manufacture [`TestBodyStructureOutput`](crate::output::TestBodyStructureOutput).
|
1549 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`TestBodyStructureOutput`](crate::output::TestBodyStructureOutput).
|
1550 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1038 1551 | pub fn builder() -> crate::output::test_body_structure_output::Builder {
|
1552 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
1039 1553 | crate::output::test_body_structure_output::Builder::default()
|
1554 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1040 1555 | }
|
1556 + | /* ServerCodegenVisitor.kt:370 */
|
1041 1557 | }
|
1042 1558 |
|
1559 + | /* RustType.kt:516 */
|
1043 1560 | #[::pyo3::pyclass]
|
1561 + | /* PythonServerStructureGenerator.kt:63 */
|
1044 1562 | /// :param payload typing.Optional\[str\]:
|
1045 1563 | /// :rtype None:
|
1564 + | /* StructureGenerator.kt:197 */
|
1046 1565 | #[allow(missing_docs)] // documentation missing in model
|
1566 + | /* RustType.kt:516 */
|
1047 1567 | #[derive(
|
1048 1568 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
1049 1569 | )]
|
1050 - | pub struct MalformedAcceptWithGenericStringOutput {
|
1570 + | pub /* StructureGenerator.kt:201 */ struct MalformedAcceptWithGenericStringOutput {
|
1571 + | /* RustType.kt:516 */
|
1051 1572 | #[pyo3(get, set)]
|
1573 + | /* PythonServerStructureGenerator.kt:80 */
|
1052 1574 | /// :type typing.Optional\[str\]:
|
1575 + | /* StructureGenerator.kt:231 */
|
1053 1576 | #[allow(missing_docs)] // documentation missing in model
|
1054 1577 | pub payload: ::std::option::Option<::std::string::String>,
|
1578 + | /* StructureGenerator.kt:201 */
|
1055 1579 | }
|
1580 + | /* StructureGenerator.kt:135 */
|
1056 1581 | impl MalformedAcceptWithGenericStringOutput {
|
1582 + | /* StructureGenerator.kt:231 */
|
1057 1583 | #[allow(missing_docs)] // documentation missing in model
|
1584 + | /* StructureGenerator.kt:166 */
|
1058 1585 | pub fn payload(&self) -> ::std::option::Option<&str> {
|
1586 + | /* StructureGenerator.kt:169 */
|
1059 1587 | self.payload.as_deref()
|
1588 + | /* StructureGenerator.kt:166 */
|
1060 1589 | }
|
1590 + | /* StructureGenerator.kt:135 */
|
1061 1591 | }
|
1592 + | /* RustType.kt:516 */
|
1062 1593 | #[allow(clippy::new_without_default)]
|
1594 + | /* RustType.kt:516 */
|
1063 1595 | #[allow(clippy::too_many_arguments)]
|
1596 + | /* RustType.kt:516 */
|
1064 1597 | #[::pyo3::pymethods]
|
1598 + | /* PythonServerStructureGenerator.kt:88 */
|
1065 1599 | impl MalformedAcceptWithGenericStringOutput {
|
1066 1600 | #[new]
|
1067 1601 | pub fn new(payload: ::std::option::Option<::std::string::String>) -> Self {
|
1068 1602 | Self { payload }
|
1069 1603 | }
|
1070 1604 | fn __repr__(&self) -> String {
|
1071 1605 | format!("{self:?}")
|
1072 1606 | }
|
1073 1607 | fn __str__(&self) -> String {
|
1074 1608 | format!("{self:?}")
|
1075 1609 | }
|
1076 1610 | }
|
1611 + | /* PythonServerStructureGenerator.kt:111 */
|
1077 1612 | impl<'source> ::pyo3::FromPyObject<'source>
|
1078 1613 | for std::boxed::Box<MalformedAcceptWithGenericStringOutput>
|
1079 1614 | {
|
1080 1615 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
1081 1616 | ob.extract::<MalformedAcceptWithGenericStringOutput>()
|
1082 1617 | .map(Box::new)
|
1083 1618 | }
|
1084 1619 | }
|
1085 1620 |
|
1086 1621 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedAcceptWithGenericStringOutput> {
|
1087 1622 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
1088 1623 | (*self).into_py(py)
|
1089 1624 | }
|
1090 1625 | }
|
1626 + | /* ServerCodegenVisitor.kt:370 */
|
1091 1627 | impl MalformedAcceptWithGenericStringOutput {
|
1092 - | /// Creates a new builder-style object to manufacture [`MalformedAcceptWithGenericStringOutput`](crate::output::MalformedAcceptWithGenericStringOutput).
|
1628 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedAcceptWithGenericStringOutput`](crate::output::MalformedAcceptWithGenericStringOutput).
|
1629 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1093 1630 | pub fn builder() -> crate::output::malformed_accept_with_generic_string_output::Builder {
|
1631 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
1094 1632 | crate::output::malformed_accept_with_generic_string_output::Builder::default()
|
1633 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1095 1634 | }
|
1635 + | /* ServerCodegenVisitor.kt:370 */
|
1096 1636 | }
|
1097 1637 |
|
1638 + | /* RustType.kt:516 */
|
1098 1639 | #[::pyo3::pyclass]
|
1640 + | /* PythonServerStructureGenerator.kt:63 */
|
1099 1641 | /// :param payload typing.Optional\[rest_json.types.Blob\]:
|
1100 1642 | /// :rtype None:
|
1643 + | /* StructureGenerator.kt:197 */
|
1101 1644 | #[allow(missing_docs)] // documentation missing in model
|
1645 + | /* RustType.kt:516 */
|
1102 1646 | #[derive(
|
1103 1647 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
1104 1648 | )]
|
1105 - | pub struct MalformedAcceptWithPayloadOutput {
|
1649 + | pub /* StructureGenerator.kt:201 */ struct MalformedAcceptWithPayloadOutput {
|
1650 + | /* RustType.kt:516 */
|
1106 1651 | #[pyo3(get, set)]
|
1652 + | /* PythonServerStructureGenerator.kt:80 */
|
1107 1653 | /// :type typing.Optional\[rest_json.types.Blob\]:
|
1654 + | /* StructureGenerator.kt:231 */
|
1108 1655 | #[allow(missing_docs)] // documentation missing in model
|
1109 1656 | pub payload: ::std::option::Option<::aws_smithy_http_server_python::types::Blob>,
|
1657 + | /* StructureGenerator.kt:201 */
|
1110 1658 | }
|
1659 + | /* StructureGenerator.kt:135 */
|
1111 1660 | impl MalformedAcceptWithPayloadOutput {
|
1661 + | /* StructureGenerator.kt:231 */
|
1112 1662 | #[allow(missing_docs)] // documentation missing in model
|
1663 + | /* StructureGenerator.kt:166 */
|
1113 1664 | pub fn payload(&self) -> ::std::option::Option<&::aws_smithy_http_server_python::types::Blob> {
|
1665 + | /* StructureGenerator.kt:170 */
|
1114 1666 | self.payload.as_ref()
|
1667 + | /* StructureGenerator.kt:166 */
|
1115 1668 | }
|
1669 + | /* StructureGenerator.kt:135 */
|
1116 1670 | }
|
1671 + | /* RustType.kt:516 */
|
1117 1672 | #[allow(clippy::new_without_default)]
|
1673 + | /* RustType.kt:516 */
|
1118 1674 | #[allow(clippy::too_many_arguments)]
|
1675 + | /* RustType.kt:516 */
|
1119 1676 | #[::pyo3::pymethods]
|
1677 + | /* PythonServerStructureGenerator.kt:88 */
|
1120 1678 | impl MalformedAcceptWithPayloadOutput {
|
1121 1679 | #[new]
|
1122 1680 | pub fn new(
|
1123 1681 | payload: ::std::option::Option<::aws_smithy_http_server_python::types::Blob>,
|
1124 1682 | ) -> Self {
|
1125 1683 | Self { payload }
|
1126 1684 | }
|
1127 1685 | fn __repr__(&self) -> String {
|
1128 1686 | format!("{self:?}")
|
1129 1687 | }
|
1130 1688 | fn __str__(&self) -> String {
|
1131 1689 | format!("{self:?}")
|
1132 1690 | }
|
1133 1691 | }
|
1692 + | /* PythonServerStructureGenerator.kt:111 */
|
1134 1693 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<MalformedAcceptWithPayloadOutput> {
|
1135 1694 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
1136 1695 | ob.extract::<MalformedAcceptWithPayloadOutput>()
|
1137 1696 | .map(Box::new)
|
1138 1697 | }
|
1139 1698 | }
|
1140 1699 |
|
1141 1700 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedAcceptWithPayloadOutput> {
|
1142 1701 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
1143 1702 | (*self).into_py(py)
|
1144 1703 | }
|
1145 1704 | }
|
1705 + | /* ServerCodegenVisitor.kt:370 */
|
1146 1706 | impl MalformedAcceptWithPayloadOutput {
|
1147 - | /// Creates a new builder-style object to manufacture [`MalformedAcceptWithPayloadOutput`](crate::output::MalformedAcceptWithPayloadOutput).
|
1707 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedAcceptWithPayloadOutput`](crate::output::MalformedAcceptWithPayloadOutput).
|
1708 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1148 1709 | pub fn builder() -> crate::output::malformed_accept_with_payload_output::Builder {
|
1710 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
1149 1711 | crate::output::malformed_accept_with_payload_output::Builder::default()
|
1712 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1150 1713 | }
|
1714 + | /* ServerCodegenVisitor.kt:370 */
|
1151 1715 | }
|
1152 1716 |
|
1717 + | /* RustType.kt:516 */
|
1153 1718 | #[::pyo3::pyclass]
|
1719 + | /* PythonServerStructureGenerator.kt:63 */
|
1154 1720 | /// :param hi typing.Optional\[str\]:
|
1155 1721 | /// :rtype None:
|
1722 + | /* StructureGenerator.kt:197 */
|
1156 1723 | #[allow(missing_docs)] // documentation missing in model
|
1724 + | /* RustType.kt:516 */
|
1157 1725 | #[derive(
|
1158 1726 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
1159 1727 | )]
|
1160 - | pub struct MalformedAcceptWithBodyOutput {
|
1728 + | pub /* StructureGenerator.kt:201 */ struct MalformedAcceptWithBodyOutput {
|
1729 + | /* RustType.kt:516 */
|
1161 1730 | #[pyo3(get, set)]
|
1731 + | /* PythonServerStructureGenerator.kt:80 */
|
1162 1732 | /// :type typing.Optional\[str\]:
|
1733 + | /* StructureGenerator.kt:231 */
|
1163 1734 | #[allow(missing_docs)] // documentation missing in model
|
1164 1735 | pub hi: ::std::option::Option<::std::string::String>,
|
1736 + | /* StructureGenerator.kt:201 */
|
1165 1737 | }
|
1738 + | /* StructureGenerator.kt:135 */
|
1166 1739 | impl MalformedAcceptWithBodyOutput {
|
1740 + | /* StructureGenerator.kt:231 */
|
1167 1741 | #[allow(missing_docs)] // documentation missing in model
|
1742 + | /* StructureGenerator.kt:166 */
|
1168 1743 | pub fn hi(&self) -> ::std::option::Option<&str> {
|
1744 + | /* StructureGenerator.kt:169 */
|
1169 1745 | self.hi.as_deref()
|
1746 + | /* StructureGenerator.kt:166 */
|
1170 1747 | }
|
1748 + | /* StructureGenerator.kt:135 */
|
1171 1749 | }
|
1750 + | /* RustType.kt:516 */
|
1172 1751 | #[allow(clippy::new_without_default)]
|
1752 + | /* RustType.kt:516 */
|
1173 1753 | #[allow(clippy::too_many_arguments)]
|
1754 + | /* RustType.kt:516 */
|
1174 1755 | #[::pyo3::pymethods]
|
1756 + | /* PythonServerStructureGenerator.kt:88 */
|
1175 1757 | impl MalformedAcceptWithBodyOutput {
|
1176 1758 | #[new]
|
1177 1759 | pub fn new(hi: ::std::option::Option<::std::string::String>) -> Self {
|
1178 1760 | Self { hi }
|
1179 1761 | }
|
1180 1762 | fn __repr__(&self) -> String {
|
1181 1763 | format!("{self:?}")
|
1182 1764 | }
|
1183 1765 | fn __str__(&self) -> String {
|
1184 1766 | format!("{self:?}")
|
1185 1767 | }
|
1186 1768 | }
|
1769 + | /* PythonServerStructureGenerator.kt:111 */
|
1187 1770 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<MalformedAcceptWithBodyOutput> {
|
1188 1771 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
1189 1772 | ob.extract::<MalformedAcceptWithBodyOutput>().map(Box::new)
|
1190 1773 | }
|
1191 1774 | }
|
1192 1775 |
|
1193 1776 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedAcceptWithBodyOutput> {
|
1194 1777 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
1195 1778 | (*self).into_py(py)
|
1196 1779 | }
|
1197 1780 | }
|
1781 + | /* ServerCodegenVisitor.kt:370 */
|
1198 1782 | impl MalformedAcceptWithBodyOutput {
|
1199 - | /// Creates a new builder-style object to manufacture [`MalformedAcceptWithBodyOutput`](crate::output::MalformedAcceptWithBodyOutput).
|
1783 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedAcceptWithBodyOutput`](crate::output::MalformedAcceptWithBodyOutput).
|
1784 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1200 1785 | pub fn builder() -> crate::output::malformed_accept_with_body_output::Builder {
|
1786 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
1201 1787 | crate::output::malformed_accept_with_body_output::Builder::default()
|
1788 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1202 1789 | }
|
1790 + | /* ServerCodegenVisitor.kt:370 */
|
1203 1791 | }
|
1204 1792 |
|
1793 + | /* RustType.kt:516 */
|
1205 1794 | #[::pyo3::pyclass]
|
1795 + | /* PythonServerStructureGenerator.kt:63 */
|
1206 1796 | /// :rtype None:
|
1797 + | /* StructureGenerator.kt:197 */
|
1207 1798 | #[allow(missing_docs)] // documentation missing in model
|
1799 + | /* RustType.kt:516 */
|
1208 1800 | #[derive(
|
1209 1801 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
1210 1802 | )]
|
1211 - | pub struct MalformedContentTypeWithGenericStringOutput {}
|
1803 + | pub /* StructureGenerator.kt:201 */ struct MalformedContentTypeWithGenericStringOutput {/* StructureGenerator.kt:201 */}
|
1804 + | /* RustType.kt:516 */
|
1212 1805 | #[allow(clippy::new_without_default)]
|
1806 + | /* RustType.kt:516 */
|
1213 1807 | #[allow(clippy::too_many_arguments)]
|
1808 + | /* RustType.kt:516 */
|
1214 1809 | #[::pyo3::pymethods]
|
1810 + | /* PythonServerStructureGenerator.kt:88 */
|
1215 1811 | impl MalformedContentTypeWithGenericStringOutput {
|
1216 1812 | #[new]
|
1217 1813 | pub fn new() -> Self {
|
1218 1814 | Self {}
|
1219 1815 | }
|
1220 1816 | fn __repr__(&self) -> String {
|
1221 1817 | format!("{self:?}")
|
1222 1818 | }
|
1223 1819 | fn __str__(&self) -> String {
|
1224 1820 | format!("{self:?}")
|
1225 1821 | }
|
1226 1822 | }
|
1823 + | /* PythonServerStructureGenerator.kt:111 */
|
1227 1824 | impl<'source> ::pyo3::FromPyObject<'source>
|
1228 1825 | for std::boxed::Box<MalformedContentTypeWithGenericStringOutput>
|
1229 1826 | {
|
1230 1827 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
1231 1828 | ob.extract::<MalformedContentTypeWithGenericStringOutput>()
|
1232 1829 | .map(Box::new)
|
1233 1830 | }
|
1234 1831 | }
|
1235 1832 |
|
1236 1833 | impl ::pyo3::IntoPy<::pyo3::PyObject>
|
1237 1834 | for std::boxed::Box<MalformedContentTypeWithGenericStringOutput>
|
1238 1835 | {
|
1239 1836 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
1240 1837 | (*self).into_py(py)
|
1241 1838 | }
|
1242 1839 | }
|
1840 + | /* ServerCodegenVisitor.kt:370 */
|
1243 1841 | impl MalformedContentTypeWithGenericStringOutput {
|
1244 - | /// Creates a new builder-style object to manufacture [`MalformedContentTypeWithGenericStringOutput`](crate::output::MalformedContentTypeWithGenericStringOutput).
|
1842 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedContentTypeWithGenericStringOutput`](crate::output::MalformedContentTypeWithGenericStringOutput).
|
1843 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1245 1844 | pub fn builder() -> crate::output::malformed_content_type_with_generic_string_output::Builder {
|
1845 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
1246 1846 | crate::output::malformed_content_type_with_generic_string_output::Builder::default()
|
1847 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1247 1848 | }
|
1849 + | /* ServerCodegenVisitor.kt:370 */
|
1248 1850 | }
|
1249 1851 |
|
1852 + | /* RustType.kt:516 */
|
1250 1853 | #[::pyo3::pyclass]
|
1854 + | /* PythonServerStructureGenerator.kt:63 */
|
1251 1855 | /// :rtype None:
|
1856 + | /* StructureGenerator.kt:197 */
|
1252 1857 | #[allow(missing_docs)] // documentation missing in model
|
1858 + | /* RustType.kt:516 */
|
1253 1859 | #[derive(
|
1254 1860 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
1255 1861 | )]
|
1256 - | pub struct MalformedContentTypeWithPayloadOutput {}
|
1862 + | pub /* StructureGenerator.kt:201 */ struct MalformedContentTypeWithPayloadOutput {/* StructureGenerator.kt:201 */}
|
1863 + | /* RustType.kt:516 */
|
1257 1864 | #[allow(clippy::new_without_default)]
|
1865 + | /* RustType.kt:516 */
|
1258 1866 | #[allow(clippy::too_many_arguments)]
|
1867 + | /* RustType.kt:516 */
|
1259 1868 | #[::pyo3::pymethods]
|
1869 + | /* PythonServerStructureGenerator.kt:88 */
|
1260 1870 | impl MalformedContentTypeWithPayloadOutput {
|
1261 1871 | #[new]
|
1262 1872 | pub fn new() -> Self {
|
1263 1873 | Self {}
|
1264 1874 | }
|
1265 1875 | fn __repr__(&self) -> String {
|
1266 1876 | format!("{self:?}")
|
1267 1877 | }
|
1268 1878 | fn __str__(&self) -> String {
|
1269 1879 | format!("{self:?}")
|
1270 1880 | }
|
1271 1881 | }
|
1882 + | /* PythonServerStructureGenerator.kt:111 */
|
1272 1883 | impl<'source> ::pyo3::FromPyObject<'source>
|
1273 1884 | for std::boxed::Box<MalformedContentTypeWithPayloadOutput>
|
1274 1885 | {
|
1275 1886 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
1276 1887 | ob.extract::<MalformedContentTypeWithPayloadOutput>()
|
1277 1888 | .map(Box::new)
|
1278 1889 | }
|
1279 1890 | }
|
1280 1891 |
|
1281 1892 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedContentTypeWithPayloadOutput> {
|
1282 1893 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
1283 1894 | (*self).into_py(py)
|
1284 1895 | }
|
1285 1896 | }
|
1897 + | /* ServerCodegenVisitor.kt:370 */
|
1286 1898 | impl MalformedContentTypeWithPayloadOutput {
|
1287 - | /// Creates a new builder-style object to manufacture [`MalformedContentTypeWithPayloadOutput`](crate::output::MalformedContentTypeWithPayloadOutput).
|
1899 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedContentTypeWithPayloadOutput`](crate::output::MalformedContentTypeWithPayloadOutput).
|
1900 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1288 1901 | pub fn builder() -> crate::output::malformed_content_type_with_payload_output::Builder {
|
1902 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
1289 1903 | crate::output::malformed_content_type_with_payload_output::Builder::default()
|
1904 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1290 1905 | }
|
1906 + | /* ServerCodegenVisitor.kt:370 */
|
1291 1907 | }
|
1292 1908 |
|
1909 + | /* RustType.kt:516 */
|
1293 1910 | #[::pyo3::pyclass]
|
1911 + | /* PythonServerStructureGenerator.kt:63 */
|
1294 1912 | /// :rtype None:
|
1913 + | /* StructureGenerator.kt:197 */
|
1295 1914 | #[allow(missing_docs)] // documentation missing in model
|
1915 + | /* RustType.kt:516 */
|
1296 1916 | #[derive(
|
1297 1917 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
1298 1918 | )]
|
1299 - | pub struct MalformedContentTypeWithBodyOutput {}
|
1919 + | pub /* StructureGenerator.kt:201 */ struct MalformedContentTypeWithBodyOutput {/* StructureGenerator.kt:201 */}
|
1920 + | /* RustType.kt:516 */
|
1300 1921 | #[allow(clippy::new_without_default)]
|
1922 + | /* RustType.kt:516 */
|
1301 1923 | #[allow(clippy::too_many_arguments)]
|
1924 + | /* RustType.kt:516 */
|
1302 1925 | #[::pyo3::pymethods]
|
1926 + | /* PythonServerStructureGenerator.kt:88 */
|
1303 1927 | impl MalformedContentTypeWithBodyOutput {
|
1304 1928 | #[new]
|
1305 1929 | pub fn new() -> Self {
|
1306 1930 | Self {}
|
1307 1931 | }
|
1308 1932 | fn __repr__(&self) -> String {
|
1309 1933 | format!("{self:?}")
|
1310 1934 | }
|
1311 1935 | fn __str__(&self) -> String {
|
1312 1936 | format!("{self:?}")
|
1313 1937 | }
|
1314 1938 | }
|
1939 + | /* PythonServerStructureGenerator.kt:111 */
|
1315 1940 | impl<'source> ::pyo3::FromPyObject<'source>
|
1316 1941 | for std::boxed::Box<MalformedContentTypeWithBodyOutput>
|
1317 1942 | {
|
1318 1943 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
1319 1944 | ob.extract::<MalformedContentTypeWithBodyOutput>()
|
1320 1945 | .map(Box::new)
|
1321 1946 | }
|
1322 1947 | }
|
1323 1948 |
|
1324 1949 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedContentTypeWithBodyOutput> {
|
1325 1950 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
1326 1951 | (*self).into_py(py)
|
1327 1952 | }
|
1328 1953 | }
|
1954 + | /* ServerCodegenVisitor.kt:370 */
|
1329 1955 | impl MalformedContentTypeWithBodyOutput {
|
1330 - | /// Creates a new builder-style object to manufacture [`MalformedContentTypeWithBodyOutput`](crate::output::MalformedContentTypeWithBodyOutput).
|
1956 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedContentTypeWithBodyOutput`](crate::output::MalformedContentTypeWithBodyOutput).
|
1957 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1331 1958 | pub fn builder() -> crate::output::malformed_content_type_with_body_output::Builder {
|
1959 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
1332 1960 | crate::output::malformed_content_type_with_body_output::Builder::default()
|
1961 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1333 1962 | }
|
1963 + | /* ServerCodegenVisitor.kt:370 */
|
1334 1964 | }
|
1335 1965 |
|
1966 + | /* RustType.kt:516 */
|
1336 1967 | #[::pyo3::pyclass]
|
1968 + | /* PythonServerStructureGenerator.kt:63 */
|
1337 1969 | /// :rtype None:
|
1970 + | /* StructureGenerator.kt:197 */
|
1338 1971 | #[allow(missing_docs)] // documentation missing in model
|
1972 + | /* RustType.kt:516 */
|
1339 1973 | #[derive(
|
1340 1974 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
1341 1975 | )]
|
1342 - | pub struct MalformedContentTypeWithoutBodyOutput {}
|
1976 + | pub /* StructureGenerator.kt:201 */ struct MalformedContentTypeWithoutBodyOutput {/* StructureGenerator.kt:201 */}
|
1977 + | /* RustType.kt:516 */
|
1343 1978 | #[allow(clippy::new_without_default)]
|
1979 + | /* RustType.kt:516 */
|
1344 1980 | #[allow(clippy::too_many_arguments)]
|
1981 + | /* RustType.kt:516 */
|
1345 1982 | #[::pyo3::pymethods]
|
1983 + | /* PythonServerStructureGenerator.kt:88 */
|
1346 1984 | impl MalformedContentTypeWithoutBodyOutput {
|
1347 1985 | #[new]
|
1348 1986 | pub fn new() -> Self {
|
1349 1987 | Self {}
|
1350 1988 | }
|
1351 1989 | fn __repr__(&self) -> String {
|
1352 1990 | format!("{self:?}")
|
1353 1991 | }
|
1354 1992 | fn __str__(&self) -> String {
|
1355 1993 | format!("{self:?}")
|
1356 1994 | }
|
1357 1995 | }
|
1996 + | /* PythonServerStructureGenerator.kt:111 */
|
1358 1997 | impl<'source> ::pyo3::FromPyObject<'source>
|
1359 1998 | for std::boxed::Box<MalformedContentTypeWithoutBodyOutput>
|
1360 1999 | {
|
1361 2000 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
1362 2001 | ob.extract::<MalformedContentTypeWithoutBodyOutput>()
|
1363 2002 | .map(Box::new)
|
1364 2003 | }
|
1365 2004 | }
|
1366 2005 |
|
1367 2006 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedContentTypeWithoutBodyOutput> {
|
1368 2007 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
1369 2008 | (*self).into_py(py)
|
1370 2009 | }
|
1371 2010 | }
|
2011 + | /* ServerCodegenVisitor.kt:370 */
|
1372 2012 | impl MalformedContentTypeWithoutBodyOutput {
|
1373 - | /// Creates a new builder-style object to manufacture [`MalformedContentTypeWithoutBodyOutput`](crate::output::MalformedContentTypeWithoutBodyOutput).
|
2013 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedContentTypeWithoutBodyOutput`](crate::output::MalformedContentTypeWithoutBodyOutput).
|
2014 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1374 2015 | pub fn builder() -> crate::output::malformed_content_type_without_body_output::Builder {
|
2016 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
1375 2017 | crate::output::malformed_content_type_without_body_output::Builder::default()
|
2018 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1376 2019 | }
|
2020 + | /* ServerCodegenVisitor.kt:370 */
|
1377 2021 | }
|
1378 2022 |
|
2023 + | /* RustType.kt:516 */
|
1379 2024 | #[::pyo3::pyclass]
|
2025 + | /* PythonServerStructureGenerator.kt:63 */
|
1380 2026 | /// :rtype None:
|
2027 + | /* StructureGenerator.kt:197 */
|
1381 2028 | #[allow(missing_docs)] // documentation missing in model
|
2029 + | /* RustType.kt:516 */
|
1382 2030 | #[derive(
|
1383 2031 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
1384 2032 | )]
|
1385 - | pub struct MalformedTimestampBodyHttpDateOutput {}
|
2033 + | pub /* StructureGenerator.kt:201 */ struct MalformedTimestampBodyHttpDateOutput {/* StructureGenerator.kt:201 */}
|
2034 + | /* RustType.kt:516 */
|
1386 2035 | #[allow(clippy::new_without_default)]
|
2036 + | /* RustType.kt:516 */
|
1387 2037 | #[allow(clippy::too_many_arguments)]
|
2038 + | /* RustType.kt:516 */
|
1388 2039 | #[::pyo3::pymethods]
|
2040 + | /* PythonServerStructureGenerator.kt:88 */
|
1389 2041 | impl MalformedTimestampBodyHttpDateOutput {
|
1390 2042 | #[new]
|
1391 2043 | pub fn new() -> Self {
|
1392 2044 | Self {}
|
1393 2045 | }
|
1394 2046 | fn __repr__(&self) -> String {
|
1395 2047 | format!("{self:?}")
|
1396 2048 | }
|
1397 2049 | fn __str__(&self) -> String {
|
1398 2050 | format!("{self:?}")
|
1399 2051 | }
|
1400 2052 | }
|
2053 + | /* PythonServerStructureGenerator.kt:111 */
|
1401 2054 | impl<'source> ::pyo3::FromPyObject<'source>
|
1402 2055 | for std::boxed::Box<MalformedTimestampBodyHttpDateOutput>
|
1403 2056 | {
|
1404 2057 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
1405 2058 | ob.extract::<MalformedTimestampBodyHttpDateOutput>()
|
1406 2059 | .map(Box::new)
|
1407 2060 | }
|
1408 2061 | }
|
1409 2062 |
|
1410 2063 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedTimestampBodyHttpDateOutput> {
|
1411 2064 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
1412 2065 | (*self).into_py(py)
|
1413 2066 | }
|
1414 2067 | }
|
2068 + | /* ServerCodegenVisitor.kt:370 */
|
1415 2069 | impl MalformedTimestampBodyHttpDateOutput {
|
1416 - | /// Creates a new builder-style object to manufacture [`MalformedTimestampBodyHttpDateOutput`](crate::output::MalformedTimestampBodyHttpDateOutput).
|
2070 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedTimestampBodyHttpDateOutput`](crate::output::MalformedTimestampBodyHttpDateOutput).
|
2071 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1417 2072 | pub fn builder() -> crate::output::malformed_timestamp_body_http_date_output::Builder {
|
2073 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
1418 2074 | crate::output::malformed_timestamp_body_http_date_output::Builder::default()
|
2075 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1419 2076 | }
|
2077 + | /* ServerCodegenVisitor.kt:370 */
|
1420 2078 | }
|
1421 2079 |
|
2080 + | /* RustType.kt:516 */
|
1422 2081 | #[::pyo3::pyclass]
|
2082 + | /* PythonServerStructureGenerator.kt:63 */
|
1423 2083 | /// :rtype None:
|
2084 + | /* StructureGenerator.kt:197 */
|
1424 2085 | #[allow(missing_docs)] // documentation missing in model
|
2086 + | /* RustType.kt:516 */
|
1425 2087 | #[derive(
|
1426 2088 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
1427 2089 | )]
|
1428 - | pub struct MalformedTimestampBodyDateTimeOutput {}
|
2090 + | pub /* StructureGenerator.kt:201 */ struct MalformedTimestampBodyDateTimeOutput {/* StructureGenerator.kt:201 */}
|
2091 + | /* RustType.kt:516 */
|
1429 2092 | #[allow(clippy::new_without_default)]
|
2093 + | /* RustType.kt:516 */
|
1430 2094 | #[allow(clippy::too_many_arguments)]
|
2095 + | /* RustType.kt:516 */
|
1431 2096 | #[::pyo3::pymethods]
|
2097 + | /* PythonServerStructureGenerator.kt:88 */
|
1432 2098 | impl MalformedTimestampBodyDateTimeOutput {
|
1433 2099 | #[new]
|
1434 2100 | pub fn new() -> Self {
|
1435 2101 | Self {}
|
1436 2102 | }
|
1437 2103 | fn __repr__(&self) -> String {
|
1438 2104 | format!("{self:?}")
|
1439 2105 | }
|
1440 2106 | fn __str__(&self) -> String {
|
1441 2107 | format!("{self:?}")
|
1442 2108 | }
|
1443 2109 | }
|
2110 + | /* PythonServerStructureGenerator.kt:111 */
|
1444 2111 | impl<'source> ::pyo3::FromPyObject<'source>
|
1445 2112 | for std::boxed::Box<MalformedTimestampBodyDateTimeOutput>
|
1446 2113 | {
|
1447 2114 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
1448 2115 | ob.extract::<MalformedTimestampBodyDateTimeOutput>()
|
1449 2116 | .map(Box::new)
|
1450 2117 | }
|
1451 2118 | }
|
1452 2119 |
|
1453 2120 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedTimestampBodyDateTimeOutput> {
|
1454 2121 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
1455 2122 | (*self).into_py(py)
|
1456 2123 | }
|
1457 2124 | }
|
2125 + | /* ServerCodegenVisitor.kt:370 */
|
1458 2126 | impl MalformedTimestampBodyDateTimeOutput {
|
1459 - | /// Creates a new builder-style object to manufacture [`MalformedTimestampBodyDateTimeOutput`](crate::output::MalformedTimestampBodyDateTimeOutput).
|
2127 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedTimestampBodyDateTimeOutput`](crate::output::MalformedTimestampBodyDateTimeOutput).
|
2128 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1460 2129 | pub fn builder() -> crate::output::malformed_timestamp_body_date_time_output::Builder {
|
2130 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
1461 2131 | crate::output::malformed_timestamp_body_date_time_output::Builder::default()
|
2132 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1462 2133 | }
|
2134 + | /* ServerCodegenVisitor.kt:370 */
|
1463 2135 | }
|
1464 2136 |
|
2137 + | /* RustType.kt:516 */
|
1465 2138 | #[::pyo3::pyclass]
|
2139 + | /* PythonServerStructureGenerator.kt:63 */
|
1466 2140 | /// :rtype None:
|
2141 + | /* StructureGenerator.kt:197 */
|
1467 2142 | #[allow(missing_docs)] // documentation missing in model
|
2143 + | /* RustType.kt:516 */
|
1468 2144 | #[derive(
|
1469 2145 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
1470 2146 | )]
|
1471 - | pub struct MalformedTimestampBodyDefaultOutput {}
|
2147 + | pub /* StructureGenerator.kt:201 */ struct MalformedTimestampBodyDefaultOutput {/* StructureGenerator.kt:201 */}
|
2148 + | /* RustType.kt:516 */
|
1472 2149 | #[allow(clippy::new_without_default)]
|
2150 + | /* RustType.kt:516 */
|
1473 2151 | #[allow(clippy::too_many_arguments)]
|
2152 + | /* RustType.kt:516 */
|
1474 2153 | #[::pyo3::pymethods]
|
2154 + | /* PythonServerStructureGenerator.kt:88 */
|
1475 2155 | impl MalformedTimestampBodyDefaultOutput {
|
1476 2156 | #[new]
|
1477 2157 | pub fn new() -> Self {
|
1478 2158 | Self {}
|
1479 2159 | }
|
1480 2160 | fn __repr__(&self) -> String {
|
1481 2161 | format!("{self:?}")
|
1482 2162 | }
|
1483 2163 | fn __str__(&self) -> String {
|
1484 2164 | format!("{self:?}")
|
1485 2165 | }
|
1486 2166 | }
|
2167 + | /* PythonServerStructureGenerator.kt:111 */
|
1487 2168 | impl<'source> ::pyo3::FromPyObject<'source>
|
1488 2169 | for std::boxed::Box<MalformedTimestampBodyDefaultOutput>
|
1489 2170 | {
|
1490 2171 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
1491 2172 | ob.extract::<MalformedTimestampBodyDefaultOutput>()
|
1492 2173 | .map(Box::new)
|
1493 2174 | }
|
1494 2175 | }
|
1495 2176 |
|
1496 2177 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedTimestampBodyDefaultOutput> {
|
1497 2178 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
1498 2179 | (*self).into_py(py)
|
1499 2180 | }
|
1500 2181 | }
|
2182 + | /* ServerCodegenVisitor.kt:370 */
|
1501 2183 | impl MalformedTimestampBodyDefaultOutput {
|
1502 - | /// Creates a new builder-style object to manufacture [`MalformedTimestampBodyDefaultOutput`](crate::output::MalformedTimestampBodyDefaultOutput).
|
2184 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedTimestampBodyDefaultOutput`](crate::output::MalformedTimestampBodyDefaultOutput).
|
2185 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1503 2186 | pub fn builder() -> crate::output::malformed_timestamp_body_default_output::Builder {
|
2187 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
1504 2188 | crate::output::malformed_timestamp_body_default_output::Builder::default()
|
2189 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1505 2190 | }
|
2191 + | /* ServerCodegenVisitor.kt:370 */
|
1506 2192 | }
|
1507 2193 |
|
2194 + | /* RustType.kt:516 */
|
1508 2195 | #[::pyo3::pyclass]
|
2196 + | /* PythonServerStructureGenerator.kt:63 */
|
1509 2197 | /// :rtype None:
|
2198 + | /* StructureGenerator.kt:197 */
|
1510 2199 | #[allow(missing_docs)] // documentation missing in model
|
2200 + | /* RustType.kt:516 */
|
1511 2201 | #[derive(
|
1512 2202 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
1513 2203 | )]
|
1514 - | pub struct MalformedTimestampHeaderEpochOutput {}
|
2204 + | pub /* StructureGenerator.kt:201 */ struct MalformedTimestampHeaderEpochOutput {/* StructureGenerator.kt:201 */}
|
2205 + | /* RustType.kt:516 */
|
1515 2206 | #[allow(clippy::new_without_default)]
|
2207 + | /* RustType.kt:516 */
|
1516 2208 | #[allow(clippy::too_many_arguments)]
|
2209 + | /* RustType.kt:516 */
|
1517 2210 | #[::pyo3::pymethods]
|
2211 + | /* PythonServerStructureGenerator.kt:88 */
|
1518 2212 | impl MalformedTimestampHeaderEpochOutput {
|
1519 2213 | #[new]
|
1520 2214 | pub fn new() -> Self {
|
1521 2215 | Self {}
|
1522 2216 | }
|
1523 2217 | fn __repr__(&self) -> String {
|
1524 2218 | format!("{self:?}")
|
1525 2219 | }
|
1526 2220 | fn __str__(&self) -> String {
|
1527 2221 | format!("{self:?}")
|
1528 2222 | }
|
1529 2223 | }
|
2224 + | /* PythonServerStructureGenerator.kt:111 */
|
1530 2225 | impl<'source> ::pyo3::FromPyObject<'source>
|
1531 2226 | for std::boxed::Box<MalformedTimestampHeaderEpochOutput>
|
1532 2227 | {
|
1533 2228 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
1534 2229 | ob.extract::<MalformedTimestampHeaderEpochOutput>()
|
1535 2230 | .map(Box::new)
|
1536 2231 | }
|
1537 2232 | }
|
1538 2233 |
|
1539 2234 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedTimestampHeaderEpochOutput> {
|
1540 2235 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
1541 2236 | (*self).into_py(py)
|
1542 2237 | }
|
1543 2238 | }
|
2239 + | /* ServerCodegenVisitor.kt:370 */
|
1544 2240 | impl MalformedTimestampHeaderEpochOutput {
|
1545 - | /// Creates a new builder-style object to manufacture [`MalformedTimestampHeaderEpochOutput`](crate::output::MalformedTimestampHeaderEpochOutput).
|
2241 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedTimestampHeaderEpochOutput`](crate::output::MalformedTimestampHeaderEpochOutput).
|
2242 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1546 2243 | pub fn builder() -> crate::output::malformed_timestamp_header_epoch_output::Builder {
|
2244 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
1547 2245 | crate::output::malformed_timestamp_header_epoch_output::Builder::default()
|
2246 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1548 2247 | }
|
2248 + | /* ServerCodegenVisitor.kt:370 */
|
1549 2249 | }
|
1550 2250 |
|
2251 + | /* RustType.kt:516 */
|
1551 2252 | #[::pyo3::pyclass]
|
2253 + | /* PythonServerStructureGenerator.kt:63 */
|
1552 2254 | /// :rtype None:
|
2255 + | /* StructureGenerator.kt:197 */
|
1553 2256 | #[allow(missing_docs)] // documentation missing in model
|
2257 + | /* RustType.kt:516 */
|
1554 2258 | #[derive(
|
1555 2259 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
1556 2260 | )]
|
1557 - | pub struct MalformedTimestampHeaderDateTimeOutput {}
|
2261 + | pub /* StructureGenerator.kt:201 */ struct MalformedTimestampHeaderDateTimeOutput {/* StructureGenerator.kt:201 */}
|
2262 + | /* RustType.kt:516 */
|
1558 2263 | #[allow(clippy::new_without_default)]
|
2264 + | /* RustType.kt:516 */
|
1559 2265 | #[allow(clippy::too_many_arguments)]
|
2266 + | /* RustType.kt:516 */
|
1560 2267 | #[::pyo3::pymethods]
|
2268 + | /* PythonServerStructureGenerator.kt:88 */
|
1561 2269 | impl MalformedTimestampHeaderDateTimeOutput {
|
1562 2270 | #[new]
|
1563 2271 | pub fn new() -> Self {
|
1564 2272 | Self {}
|
1565 2273 | }
|
1566 2274 | fn __repr__(&self) -> String {
|
1567 2275 | format!("{self:?}")
|
1568 2276 | }
|
1569 2277 | fn __str__(&self) -> String {
|
1570 2278 | format!("{self:?}")
|
1571 2279 | }
|
1572 2280 | }
|
2281 + | /* PythonServerStructureGenerator.kt:111 */
|
1573 2282 | impl<'source> ::pyo3::FromPyObject<'source>
|
1574 2283 | for std::boxed::Box<MalformedTimestampHeaderDateTimeOutput>
|
1575 2284 | {
|
1576 2285 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
1577 2286 | ob.extract::<MalformedTimestampHeaderDateTimeOutput>()
|
1578 2287 | .map(Box::new)
|
1579 2288 | }
|
1580 2289 | }
|
1581 2290 |
|
1582 2291 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedTimestampHeaderDateTimeOutput> {
|
1583 2292 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
1584 2293 | (*self).into_py(py)
|
1585 2294 | }
|
1586 2295 | }
|
2296 + | /* ServerCodegenVisitor.kt:370 */
|
1587 2297 | impl MalformedTimestampHeaderDateTimeOutput {
|
1588 - | /// Creates a new builder-style object to manufacture [`MalformedTimestampHeaderDateTimeOutput`](crate::output::MalformedTimestampHeaderDateTimeOutput).
|
2298 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedTimestampHeaderDateTimeOutput`](crate::output::MalformedTimestampHeaderDateTimeOutput).
|
2299 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1589 2300 | pub fn builder() -> crate::output::malformed_timestamp_header_date_time_output::Builder {
|
2301 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
1590 2302 | crate::output::malformed_timestamp_header_date_time_output::Builder::default()
|
2303 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1591 2304 | }
|
2305 + | /* ServerCodegenVisitor.kt:370 */
|
1592 2306 | }
|
1593 2307 |
|
2308 + | /* RustType.kt:516 */
|
1594 2309 | #[::pyo3::pyclass]
|
2310 + | /* PythonServerStructureGenerator.kt:63 */
|
1595 2311 | /// :rtype None:
|
2312 + | /* StructureGenerator.kt:197 */
|
1596 2313 | #[allow(missing_docs)] // documentation missing in model
|
2314 + | /* RustType.kt:516 */
|
1597 2315 | #[derive(
|
1598 2316 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
1599 2317 | )]
|
1600 - | pub struct MalformedTimestampHeaderDefaultOutput {}
|
2318 + | pub /* StructureGenerator.kt:201 */ struct MalformedTimestampHeaderDefaultOutput {/* StructureGenerator.kt:201 */}
|
2319 + | /* RustType.kt:516 */
|
1601 2320 | #[allow(clippy::new_without_default)]
|
2321 + | /* RustType.kt:516 */
|
1602 2322 | #[allow(clippy::too_many_arguments)]
|
2323 + | /* RustType.kt:516 */
|
1603 2324 | #[::pyo3::pymethods]
|
2325 + | /* PythonServerStructureGenerator.kt:88 */
|
1604 2326 | impl MalformedTimestampHeaderDefaultOutput {
|
1605 2327 | #[new]
|
1606 2328 | pub fn new() -> Self {
|
1607 2329 | Self {}
|
1608 2330 | }
|
1609 2331 | fn __repr__(&self) -> String {
|
1610 2332 | format!("{self:?}")
|
1611 2333 | }
|
1612 2334 | fn __str__(&self) -> String {
|
1613 2335 | format!("{self:?}")
|
1614 2336 | }
|
1615 2337 | }
|
2338 + | /* PythonServerStructureGenerator.kt:111 */
|
1616 2339 | impl<'source> ::pyo3::FromPyObject<'source>
|
1617 2340 | for std::boxed::Box<MalformedTimestampHeaderDefaultOutput>
|
1618 2341 | {
|
1619 2342 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
1620 2343 | ob.extract::<MalformedTimestampHeaderDefaultOutput>()
|
1621 2344 | .map(Box::new)
|
1622 2345 | }
|
1623 2346 | }
|
1624 2347 |
|
1625 2348 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedTimestampHeaderDefaultOutput> {
|
1626 2349 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
1627 2350 | (*self).into_py(py)
|
1628 2351 | }
|
1629 2352 | }
|
2353 + | /* ServerCodegenVisitor.kt:370 */
|
1630 2354 | impl MalformedTimestampHeaderDefaultOutput {
|
1631 - | /// Creates a new builder-style object to manufacture [`MalformedTimestampHeaderDefaultOutput`](crate::output::MalformedTimestampHeaderDefaultOutput).
|
2355 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedTimestampHeaderDefaultOutput`](crate::output::MalformedTimestampHeaderDefaultOutput).
|
2356 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1632 2357 | pub fn builder() -> crate::output::malformed_timestamp_header_default_output::Builder {
|
2358 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
1633 2359 | crate::output::malformed_timestamp_header_default_output::Builder::default()
|
2360 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1634 2361 | }
|
2362 + | /* ServerCodegenVisitor.kt:370 */
|
1635 2363 | }
|
1636 2364 |
|
2365 + | /* RustType.kt:516 */
|
1637 2366 | #[::pyo3::pyclass]
|
2367 + | /* PythonServerStructureGenerator.kt:63 */
|
1638 2368 | /// :rtype None:
|
2369 + | /* StructureGenerator.kt:197 */
|
1639 2370 | #[allow(missing_docs)] // documentation missing in model
|
2371 + | /* RustType.kt:516 */
|
1640 2372 | #[derive(
|
1641 2373 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
1642 2374 | )]
|
1643 - | pub struct MalformedTimestampQueryEpochOutput {}
|
2375 + | pub /* StructureGenerator.kt:201 */ struct MalformedTimestampQueryEpochOutput {/* StructureGenerator.kt:201 */}
|
2376 + | /* RustType.kt:516 */
|
1644 2377 | #[allow(clippy::new_without_default)]
|
2378 + | /* RustType.kt:516 */
|
1645 2379 | #[allow(clippy::too_many_arguments)]
|
2380 + | /* RustType.kt:516 */
|
1646 2381 | #[::pyo3::pymethods]
|
2382 + | /* PythonServerStructureGenerator.kt:88 */
|
1647 2383 | impl MalformedTimestampQueryEpochOutput {
|
1648 2384 | #[new]
|
1649 2385 | pub fn new() -> Self {
|
1650 2386 | Self {}
|
1651 2387 | }
|
1652 2388 | fn __repr__(&self) -> String {
|
1653 2389 | format!("{self:?}")
|
1654 2390 | }
|
1655 2391 | fn __str__(&self) -> String {
|
1656 2392 | format!("{self:?}")
|
1657 2393 | }
|
1658 2394 | }
|
2395 + | /* PythonServerStructureGenerator.kt:111 */
|
1659 2396 | impl<'source> ::pyo3::FromPyObject<'source>
|
1660 2397 | for std::boxed::Box<MalformedTimestampQueryEpochOutput>
|
1661 2398 | {
|
1662 2399 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
1663 2400 | ob.extract::<MalformedTimestampQueryEpochOutput>()
|
1664 2401 | .map(Box::new)
|
1665 2402 | }
|
1666 2403 | }
|
1667 2404 |
|
1668 2405 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedTimestampQueryEpochOutput> {
|
1669 2406 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
1670 2407 | (*self).into_py(py)
|
1671 2408 | }
|
1672 2409 | }
|
2410 + | /* ServerCodegenVisitor.kt:370 */
|
1673 2411 | impl MalformedTimestampQueryEpochOutput {
|
1674 - | /// Creates a new builder-style object to manufacture [`MalformedTimestampQueryEpochOutput`](crate::output::MalformedTimestampQueryEpochOutput).
|
2412 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedTimestampQueryEpochOutput`](crate::output::MalformedTimestampQueryEpochOutput).
|
2413 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1675 2414 | pub fn builder() -> crate::output::malformed_timestamp_query_epoch_output::Builder {
|
2415 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
1676 2416 | crate::output::malformed_timestamp_query_epoch_output::Builder::default()
|
2417 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1677 2418 | }
|
2419 + | /* ServerCodegenVisitor.kt:370 */
|
1678 2420 | }
|
1679 2421 |
|
2422 + | /* RustType.kt:516 */
|
1680 2423 | #[::pyo3::pyclass]
|
2424 + | /* PythonServerStructureGenerator.kt:63 */
|
1681 2425 | /// :rtype None:
|
2426 + | /* StructureGenerator.kt:197 */
|
1682 2427 | #[allow(missing_docs)] // documentation missing in model
|
2428 + | /* RustType.kt:516 */
|
1683 2429 | #[derive(
|
1684 2430 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
1685 2431 | )]
|
1686 - | pub struct MalformedTimestampQueryHttpDateOutput {}
|
2432 + | pub /* StructureGenerator.kt:201 */ struct MalformedTimestampQueryHttpDateOutput {/* StructureGenerator.kt:201 */}
|
2433 + | /* RustType.kt:516 */
|
1687 2434 | #[allow(clippy::new_without_default)]
|
2435 + | /* RustType.kt:516 */
|
1688 2436 | #[allow(clippy::too_many_arguments)]
|
2437 + | /* RustType.kt:516 */
|
1689 2438 | #[::pyo3::pymethods]
|
2439 + | /* PythonServerStructureGenerator.kt:88 */
|
1690 2440 | impl MalformedTimestampQueryHttpDateOutput {
|
1691 2441 | #[new]
|
1692 2442 | pub fn new() -> Self {
|
1693 2443 | Self {}
|
1694 2444 | }
|
1695 2445 | fn __repr__(&self) -> String {
|
1696 2446 | format!("{self:?}")
|
1697 2447 | }
|
1698 2448 | fn __str__(&self) -> String {
|
1699 2449 | format!("{self:?}")
|
1700 2450 | }
|
1701 2451 | }
|
2452 + | /* PythonServerStructureGenerator.kt:111 */
|
1702 2453 | impl<'source> ::pyo3::FromPyObject<'source>
|
1703 2454 | for std::boxed::Box<MalformedTimestampQueryHttpDateOutput>
|
1704 2455 | {
|
1705 2456 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
1706 2457 | ob.extract::<MalformedTimestampQueryHttpDateOutput>()
|
1707 2458 | .map(Box::new)
|
1708 2459 | }
|
1709 2460 | }
|
1710 2461 |
|
1711 2462 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedTimestampQueryHttpDateOutput> {
|
1712 2463 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
1713 2464 | (*self).into_py(py)
|
1714 2465 | }
|
1715 2466 | }
|
2467 + | /* ServerCodegenVisitor.kt:370 */
|
1716 2468 | impl MalformedTimestampQueryHttpDateOutput {
|
1717 - | /// Creates a new builder-style object to manufacture [`MalformedTimestampQueryHttpDateOutput`](crate::output::MalformedTimestampQueryHttpDateOutput).
|
2469 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedTimestampQueryHttpDateOutput`](crate::output::MalformedTimestampQueryHttpDateOutput).
|
2470 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1718 2471 | pub fn builder() -> crate::output::malformed_timestamp_query_http_date_output::Builder {
|
2472 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
1719 2473 | crate::output::malformed_timestamp_query_http_date_output::Builder::default()
|
2474 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1720 2475 | }
|
2476 + | /* ServerCodegenVisitor.kt:370 */
|
1721 2477 | }
|
1722 2478 |
|
2479 + | /* RustType.kt:516 */
|
1723 2480 | #[::pyo3::pyclass]
|
2481 + | /* PythonServerStructureGenerator.kt:63 */
|
1724 2482 | /// :rtype None:
|
2483 + | /* StructureGenerator.kt:197 */
|
1725 2484 | #[allow(missing_docs)] // documentation missing in model
|
2485 + | /* RustType.kt:516 */
|
1726 2486 | #[derive(
|
1727 2487 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
1728 2488 | )]
|
1729 - | pub struct MalformedTimestampQueryDefaultOutput {}
|
2489 + | pub /* StructureGenerator.kt:201 */ struct MalformedTimestampQueryDefaultOutput {/* StructureGenerator.kt:201 */}
|
2490 + | /* RustType.kt:516 */
|
1730 2491 | #[allow(clippy::new_without_default)]
|
2492 + | /* RustType.kt:516 */
|
1731 2493 | #[allow(clippy::too_many_arguments)]
|
2494 + | /* RustType.kt:516 */
|
1732 2495 | #[::pyo3::pymethods]
|
2496 + | /* PythonServerStructureGenerator.kt:88 */
|
1733 2497 | impl MalformedTimestampQueryDefaultOutput {
|
1734 2498 | #[new]
|
1735 2499 | pub fn new() -> Self {
|
1736 2500 | Self {}
|
1737 2501 | }
|
1738 2502 | fn __repr__(&self) -> String {
|
1739 2503 | format!("{self:?}")
|
1740 2504 | }
|
1741 2505 | fn __str__(&self) -> String {
|
1742 2506 | format!("{self:?}")
|
1743 2507 | }
|
1744 2508 | }
|
2509 + | /* PythonServerStructureGenerator.kt:111 */
|
1745 2510 | impl<'source> ::pyo3::FromPyObject<'source>
|
1746 2511 | for std::boxed::Box<MalformedTimestampQueryDefaultOutput>
|
1747 2512 | {
|
1748 2513 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
1749 2514 | ob.extract::<MalformedTimestampQueryDefaultOutput>()
|
1750 2515 | .map(Box::new)
|
1751 2516 | }
|
1752 2517 | }
|
1753 2518 |
|
1754 2519 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedTimestampQueryDefaultOutput> {
|
1755 2520 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
1756 2521 | (*self).into_py(py)
|
1757 2522 | }
|
1758 2523 | }
|
2524 + | /* ServerCodegenVisitor.kt:370 */
|
1759 2525 | impl MalformedTimestampQueryDefaultOutput {
|
1760 - | /// Creates a new builder-style object to manufacture [`MalformedTimestampQueryDefaultOutput`](crate::output::MalformedTimestampQueryDefaultOutput).
|
2526 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedTimestampQueryDefaultOutput`](crate::output::MalformedTimestampQueryDefaultOutput).
|
2527 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1761 2528 | pub fn builder() -> crate::output::malformed_timestamp_query_default_output::Builder {
|
2529 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
1762 2530 | crate::output::malformed_timestamp_query_default_output::Builder::default()
|
2531 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1763 2532 | }
|
2533 + | /* ServerCodegenVisitor.kt:370 */
|
1764 2534 | }
|
1765 2535 |
|
2536 + | /* RustType.kt:516 */
|
1766 2537 | #[::pyo3::pyclass]
|
2538 + | /* PythonServerStructureGenerator.kt:63 */
|
1767 2539 | /// :rtype None:
|
2540 + | /* StructureGenerator.kt:197 */
|
1768 2541 | #[allow(missing_docs)] // documentation missing in model
|
2542 + | /* RustType.kt:516 */
|
1769 2543 | #[derive(
|
1770 2544 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
1771 2545 | )]
|
1772 - | pub struct MalformedTimestampPathEpochOutput {}
|
2546 + | pub /* StructureGenerator.kt:201 */ struct MalformedTimestampPathEpochOutput {/* StructureGenerator.kt:201 */}
|
2547 + | /* RustType.kt:516 */
|
1773 2548 | #[allow(clippy::new_without_default)]
|
2549 + | /* RustType.kt:516 */
|
1774 2550 | #[allow(clippy::too_many_arguments)]
|
2551 + | /* RustType.kt:516 */
|
1775 2552 | #[::pyo3::pymethods]
|
2553 + | /* PythonServerStructureGenerator.kt:88 */
|
1776 2554 | impl MalformedTimestampPathEpochOutput {
|
1777 2555 | #[new]
|
1778 2556 | pub fn new() -> Self {
|
1779 2557 | Self {}
|
1780 2558 | }
|
1781 2559 | fn __repr__(&self) -> String {
|
1782 2560 | format!("{self:?}")
|
1783 2561 | }
|
1784 2562 | fn __str__(&self) -> String {
|
1785 2563 | format!("{self:?}")
|
1786 2564 | }
|
1787 2565 | }
|
2566 + | /* PythonServerStructureGenerator.kt:111 */
|
1788 2567 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<MalformedTimestampPathEpochOutput> {
|
1789 2568 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
1790 2569 | ob.extract::<MalformedTimestampPathEpochOutput>()
|
1791 2570 | .map(Box::new)
|
1792 2571 | }
|
1793 2572 | }
|
1794 2573 |
|
1795 2574 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedTimestampPathEpochOutput> {
|
1796 2575 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
1797 2576 | (*self).into_py(py)
|
1798 2577 | }
|
1799 2578 | }
|
2579 + | /* ServerCodegenVisitor.kt:370 */
|
1800 2580 | impl MalformedTimestampPathEpochOutput {
|
1801 - | /// Creates a new builder-style object to manufacture [`MalformedTimestampPathEpochOutput`](crate::output::MalformedTimestampPathEpochOutput).
|
2581 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedTimestampPathEpochOutput`](crate::output::MalformedTimestampPathEpochOutput).
|
2582 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1802 2583 | pub fn builder() -> crate::output::malformed_timestamp_path_epoch_output::Builder {
|
2584 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
1803 2585 | crate::output::malformed_timestamp_path_epoch_output::Builder::default()
|
2586 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1804 2587 | }
|
2588 + | /* ServerCodegenVisitor.kt:370 */
|
1805 2589 | }
|
1806 2590 |
|
2591 + | /* RustType.kt:516 */
|
1807 2592 | #[::pyo3::pyclass]
|
2593 + | /* PythonServerStructureGenerator.kt:63 */
|
1808 2594 | /// :rtype None:
|
2595 + | /* StructureGenerator.kt:197 */
|
1809 2596 | #[allow(missing_docs)] // documentation missing in model
|
2597 + | /* RustType.kt:516 */
|
1810 2598 | #[derive(
|
1811 2599 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
1812 2600 | )]
|
1813 - | pub struct MalformedTimestampPathHttpDateOutput {}
|
2601 + | pub /* StructureGenerator.kt:201 */ struct MalformedTimestampPathHttpDateOutput {/* StructureGenerator.kt:201 */}
|
2602 + | /* RustType.kt:516 */
|
1814 2603 | #[allow(clippy::new_without_default)]
|
2604 + | /* RustType.kt:516 */
|
1815 2605 | #[allow(clippy::too_many_arguments)]
|
2606 + | /* RustType.kt:516 */
|
1816 2607 | #[::pyo3::pymethods]
|
2608 + | /* PythonServerStructureGenerator.kt:88 */
|
1817 2609 | impl MalformedTimestampPathHttpDateOutput {
|
1818 2610 | #[new]
|
1819 2611 | pub fn new() -> Self {
|
1820 2612 | Self {}
|
1821 2613 | }
|
1822 2614 | fn __repr__(&self) -> String {
|
1823 2615 | format!("{self:?}")
|
1824 2616 | }
|
1825 2617 | fn __str__(&self) -> String {
|
1826 2618 | format!("{self:?}")
|
1827 2619 | }
|
1828 2620 | }
|
2621 + | /* PythonServerStructureGenerator.kt:111 */
|
1829 2622 | impl<'source> ::pyo3::FromPyObject<'source>
|
1830 2623 | for std::boxed::Box<MalformedTimestampPathHttpDateOutput>
|
1831 2624 | {
|
1832 2625 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
1833 2626 | ob.extract::<MalformedTimestampPathHttpDateOutput>()
|
1834 2627 | .map(Box::new)
|
1835 2628 | }
|
1836 2629 | }
|
1837 2630 |
|
1838 2631 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedTimestampPathHttpDateOutput> {
|
1839 2632 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
1840 2633 | (*self).into_py(py)
|
1841 2634 | }
|
1842 2635 | }
|
2636 + | /* ServerCodegenVisitor.kt:370 */
|
1843 2637 | impl MalformedTimestampPathHttpDateOutput {
|
1844 - | /// Creates a new builder-style object to manufacture [`MalformedTimestampPathHttpDateOutput`](crate::output::MalformedTimestampPathHttpDateOutput).
|
2638 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedTimestampPathHttpDateOutput`](crate::output::MalformedTimestampPathHttpDateOutput).
|
2639 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1845 2640 | pub fn builder() -> crate::output::malformed_timestamp_path_http_date_output::Builder {
|
2641 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
1846 2642 | crate::output::malformed_timestamp_path_http_date_output::Builder::default()
|
2643 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1847 2644 | }
|
2645 + | /* ServerCodegenVisitor.kt:370 */
|
1848 2646 | }
|
1849 2647 |
|
2648 + | /* RustType.kt:516 */
|
1850 2649 | #[::pyo3::pyclass]
|
2650 + | /* PythonServerStructureGenerator.kt:63 */
|
1851 2651 | /// :rtype None:
|
2652 + | /* StructureGenerator.kt:197 */
|
1852 2653 | #[allow(missing_docs)] // documentation missing in model
|
2654 + | /* RustType.kt:516 */
|
1853 2655 | #[derive(
|
1854 2656 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
1855 2657 | )]
|
1856 - | pub struct MalformedTimestampPathDefaultOutput {}
|
2658 + | pub /* StructureGenerator.kt:201 */ struct MalformedTimestampPathDefaultOutput {/* StructureGenerator.kt:201 */}
|
2659 + | /* RustType.kt:516 */
|
1857 2660 | #[allow(clippy::new_without_default)]
|
2661 + | /* RustType.kt:516 */
|
1858 2662 | #[allow(clippy::too_many_arguments)]
|
2663 + | /* RustType.kt:516 */
|
1859 2664 | #[::pyo3::pymethods]
|
2665 + | /* PythonServerStructureGenerator.kt:88 */
|
1860 2666 | impl MalformedTimestampPathDefaultOutput {
|
1861 2667 | #[new]
|
1862 2668 | pub fn new() -> Self {
|
1863 2669 | Self {}
|
1864 2670 | }
|
1865 2671 | fn __repr__(&self) -> String {
|
1866 2672 | format!("{self:?}")
|
1867 2673 | }
|
1868 2674 | fn __str__(&self) -> String {
|
1869 2675 | format!("{self:?}")
|
1870 2676 | }
|
1871 2677 | }
|
2678 + | /* PythonServerStructureGenerator.kt:111 */
|
1872 2679 | impl<'source> ::pyo3::FromPyObject<'source>
|
1873 2680 | for std::boxed::Box<MalformedTimestampPathDefaultOutput>
|
1874 2681 | {
|
1875 2682 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
1876 2683 | ob.extract::<MalformedTimestampPathDefaultOutput>()
|
1877 2684 | .map(Box::new)
|
1878 2685 | }
|
1879 2686 | }
|
1880 2687 |
|
1881 2688 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedTimestampPathDefaultOutput> {
|
1882 2689 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
1883 2690 | (*self).into_py(py)
|
1884 2691 | }
|
1885 2692 | }
|
2693 + | /* ServerCodegenVisitor.kt:370 */
|
1886 2694 | impl MalformedTimestampPathDefaultOutput {
|
1887 - | /// Creates a new builder-style object to manufacture [`MalformedTimestampPathDefaultOutput`](crate::output::MalformedTimestampPathDefaultOutput).
|
2695 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedTimestampPathDefaultOutput`](crate::output::MalformedTimestampPathDefaultOutput).
|
2696 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1888 2697 | pub fn builder() -> crate::output::malformed_timestamp_path_default_output::Builder {
|
2698 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
1889 2699 | crate::output::malformed_timestamp_path_default_output::Builder::default()
|
2700 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1890 2701 | }
|
2702 + | /* ServerCodegenVisitor.kt:370 */
|
1891 2703 | }
|
1892 2704 |
|
2705 + | /* RustType.kt:516 */
|
1893 2706 | #[::pyo3::pyclass]
|
2707 + | /* PythonServerStructureGenerator.kt:63 */
|
1894 2708 | /// :rtype None:
|
2709 + | /* StructureGenerator.kt:197 */
|
1895 2710 | #[allow(missing_docs)] // documentation missing in model
|
2711 + | /* RustType.kt:516 */
|
1896 2712 | #[derive(
|
1897 2713 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
1898 2714 | )]
|
1899 - | pub struct MalformedStringOutput {}
|
2715 + | pub /* StructureGenerator.kt:201 */ struct MalformedStringOutput {/* StructureGenerator.kt:201 */}
|
2716 + | /* RustType.kt:516 */
|
1900 2717 | #[allow(clippy::new_without_default)]
|
2718 + | /* RustType.kt:516 */
|
1901 2719 | #[allow(clippy::too_many_arguments)]
|
2720 + | /* RustType.kt:516 */
|
1902 2721 | #[::pyo3::pymethods]
|
2722 + | /* PythonServerStructureGenerator.kt:88 */
|
1903 2723 | impl MalformedStringOutput {
|
1904 2724 | #[new]
|
1905 2725 | pub fn new() -> Self {
|
1906 2726 | Self {}
|
1907 2727 | }
|
1908 2728 | fn __repr__(&self) -> String {
|
1909 2729 | format!("{self:?}")
|
1910 2730 | }
|
1911 2731 | fn __str__(&self) -> String {
|
1912 2732 | format!("{self:?}")
|
1913 2733 | }
|
1914 2734 | }
|
2735 + | /* PythonServerStructureGenerator.kt:111 */
|
1915 2736 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<MalformedStringOutput> {
|
1916 2737 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
1917 2738 | ob.extract::<MalformedStringOutput>().map(Box::new)
|
1918 2739 | }
|
1919 2740 | }
|
1920 2741 |
|
1921 2742 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedStringOutput> {
|
1922 2743 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
1923 2744 | (*self).into_py(py)
|
1924 2745 | }
|
1925 2746 | }
|
2747 + | /* ServerCodegenVisitor.kt:370 */
|
1926 2748 | impl MalformedStringOutput {
|
1927 - | /// Creates a new builder-style object to manufacture [`MalformedStringOutput`](crate::output::MalformedStringOutput).
|
2749 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedStringOutput`](crate::output::MalformedStringOutput).
|
2750 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1928 2751 | pub fn builder() -> crate::output::malformed_string_output::Builder {
|
2752 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
1929 2753 | crate::output::malformed_string_output::Builder::default()
|
2754 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1930 2755 | }
|
2756 + | /* ServerCodegenVisitor.kt:370 */
|
1931 2757 | }
|
1932 2758 |
|
2759 + | /* RustType.kt:516 */
|
1933 2760 | #[::pyo3::pyclass]
|
2761 + | /* PythonServerStructureGenerator.kt:63 */
|
1934 2762 | /// :rtype None:
|
2763 + | /* StructureGenerator.kt:197 */
|
1935 2764 | #[allow(missing_docs)] // documentation missing in model
|
2765 + | /* RustType.kt:516 */
|
1936 2766 | #[derive(
|
1937 2767 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
1938 2768 | )]
|
1939 - | pub struct MalformedDoubleOutput {}
|
2769 + | pub /* StructureGenerator.kt:201 */ struct MalformedDoubleOutput {/* StructureGenerator.kt:201 */}
|
2770 + | /* RustType.kt:516 */
|
1940 2771 | #[allow(clippy::new_without_default)]
|
2772 + | /* RustType.kt:516 */
|
1941 2773 | #[allow(clippy::too_many_arguments)]
|
2774 + | /* RustType.kt:516 */
|
1942 2775 | #[::pyo3::pymethods]
|
2776 + | /* PythonServerStructureGenerator.kt:88 */
|
1943 2777 | impl MalformedDoubleOutput {
|
1944 2778 | #[new]
|
1945 2779 | pub fn new() -> Self {
|
1946 2780 | Self {}
|
1947 2781 | }
|
1948 2782 | fn __repr__(&self) -> String {
|
1949 2783 | format!("{self:?}")
|
1950 2784 | }
|
1951 2785 | fn __str__(&self) -> String {
|
1952 2786 | format!("{self:?}")
|
1953 2787 | }
|
1954 2788 | }
|
2789 + | /* PythonServerStructureGenerator.kt:111 */
|
1955 2790 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<MalformedDoubleOutput> {
|
1956 2791 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
1957 2792 | ob.extract::<MalformedDoubleOutput>().map(Box::new)
|
1958 2793 | }
|
1959 2794 | }
|
1960 2795 |
|
1961 2796 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedDoubleOutput> {
|
1962 2797 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
1963 2798 | (*self).into_py(py)
|
1964 2799 | }
|
1965 2800 | }
|
2801 + | /* ServerCodegenVisitor.kt:370 */
|
1966 2802 | impl MalformedDoubleOutput {
|
1967 - | /// Creates a new builder-style object to manufacture [`MalformedDoubleOutput`](crate::output::MalformedDoubleOutput).
|
2803 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedDoubleOutput`](crate::output::MalformedDoubleOutput).
|
2804 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1968 2805 | pub fn builder() -> crate::output::malformed_double_output::Builder {
|
2806 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
1969 2807 | crate::output::malformed_double_output::Builder::default()
|
2808 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
1970 2809 | }
|
2810 + | /* ServerCodegenVisitor.kt:370 */
|
1971 2811 | }
|
1972 2812 |
|
2813 + | /* RustType.kt:516 */
|
1973 2814 | #[::pyo3::pyclass]
|
2815 + | /* PythonServerStructureGenerator.kt:63 */
|
1974 2816 | /// :rtype None:
|
2817 + | /* StructureGenerator.kt:197 */
|
1975 2818 | #[allow(missing_docs)] // documentation missing in model
|
2819 + | /* RustType.kt:516 */
|
1976 2820 | #[derive(
|
1977 2821 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
1978 2822 | )]
|
1979 - | pub struct MalformedFloatOutput {}
|
2823 + | pub /* StructureGenerator.kt:201 */ struct MalformedFloatOutput {/* StructureGenerator.kt:201 */}
|
2824 + | /* RustType.kt:516 */
|
1980 2825 | #[allow(clippy::new_without_default)]
|
2826 + | /* RustType.kt:516 */
|
1981 2827 | #[allow(clippy::too_many_arguments)]
|
2828 + | /* RustType.kt:516 */
|
1982 2829 | #[::pyo3::pymethods]
|
2830 + | /* PythonServerStructureGenerator.kt:88 */
|
1983 2831 | impl MalformedFloatOutput {
|
1984 2832 | #[new]
|
1985 2833 | pub fn new() -> Self {
|
1986 2834 | Self {}
|
1987 2835 | }
|
1988 2836 | fn __repr__(&self) -> String {
|
1989 2837 | format!("{self:?}")
|
1990 2838 | }
|
1991 2839 | fn __str__(&self) -> String {
|
1992 2840 | format!("{self:?}")
|
1993 2841 | }
|
1994 2842 | }
|
2843 + | /* PythonServerStructureGenerator.kt:111 */
|
1995 2844 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<MalformedFloatOutput> {
|
1996 2845 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
1997 2846 | ob.extract::<MalformedFloatOutput>().map(Box::new)
|
1998 2847 | }
|
1999 2848 | }
|
2000 2849 |
|
2001 2850 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedFloatOutput> {
|
2002 2851 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
2003 2852 | (*self).into_py(py)
|
2004 2853 | }
|
2005 2854 | }
|
2855 + | /* ServerCodegenVisitor.kt:370 */
|
2006 2856 | impl MalformedFloatOutput {
|
2007 - | /// Creates a new builder-style object to manufacture [`MalformedFloatOutput`](crate::output::MalformedFloatOutput).
|
2857 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedFloatOutput`](crate::output::MalformedFloatOutput).
|
2858 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2008 2859 | pub fn builder() -> crate::output::malformed_float_output::Builder {
|
2860 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
2009 2861 | crate::output::malformed_float_output::Builder::default()
|
2862 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2010 2863 | }
|
2864 + | /* ServerCodegenVisitor.kt:370 */
|
2011 2865 | }
|
2012 2866 |
|
2867 + | /* RustType.kt:516 */
|
2013 2868 | #[::pyo3::pyclass]
|
2869 + | /* PythonServerStructureGenerator.kt:63 */
|
2014 2870 | /// :rtype None:
|
2871 + | /* StructureGenerator.kt:197 */
|
2015 2872 | #[allow(missing_docs)] // documentation missing in model
|
2873 + | /* RustType.kt:516 */
|
2016 2874 | #[derive(
|
2017 2875 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
2018 2876 | )]
|
2019 - | pub struct MalformedLongOutput {}
|
2877 + | pub /* StructureGenerator.kt:201 */ struct MalformedLongOutput {/* StructureGenerator.kt:201 */}
|
2878 + | /* RustType.kt:516 */
|
2020 2879 | #[allow(clippy::new_without_default)]
|
2880 + | /* RustType.kt:516 */
|
2021 2881 | #[allow(clippy::too_many_arguments)]
|
2882 + | /* RustType.kt:516 */
|
2022 2883 | #[::pyo3::pymethods]
|
2884 + | /* PythonServerStructureGenerator.kt:88 */
|
2023 2885 | impl MalformedLongOutput {
|
2024 2886 | #[new]
|
2025 2887 | pub fn new() -> Self {
|
2026 2888 | Self {}
|
2027 2889 | }
|
2028 2890 | fn __repr__(&self) -> String {
|
2029 2891 | format!("{self:?}")
|
2030 2892 | }
|
2031 2893 | fn __str__(&self) -> String {
|
2032 2894 | format!("{self:?}")
|
2033 2895 | }
|
2034 2896 | }
|
2897 + | /* PythonServerStructureGenerator.kt:111 */
|
2035 2898 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<MalformedLongOutput> {
|
2036 2899 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
2037 2900 | ob.extract::<MalformedLongOutput>().map(Box::new)
|
2038 2901 | }
|
2039 2902 | }
|
2040 2903 |
|
2041 2904 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedLongOutput> {
|
2042 2905 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
2043 2906 | (*self).into_py(py)
|
2044 2907 | }
|
2045 2908 | }
|
2909 + | /* ServerCodegenVisitor.kt:370 */
|
2046 2910 | impl MalformedLongOutput {
|
2047 - | /// Creates a new builder-style object to manufacture [`MalformedLongOutput`](crate::output::MalformedLongOutput).
|
2911 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedLongOutput`](crate::output::MalformedLongOutput).
|
2912 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2048 2913 | pub fn builder() -> crate::output::malformed_long_output::Builder {
|
2914 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
2049 2915 | crate::output::malformed_long_output::Builder::default()
|
2916 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2050 2917 | }
|
2918 + | /* ServerCodegenVisitor.kt:370 */
|
2051 2919 | }
|
2052 2920 |
|
2921 + | /* RustType.kt:516 */
|
2053 2922 | #[::pyo3::pyclass]
|
2923 + | /* PythonServerStructureGenerator.kt:63 */
|
2054 2924 | /// :rtype None:
|
2925 + | /* StructureGenerator.kt:197 */
|
2055 2926 | #[allow(missing_docs)] // documentation missing in model
|
2927 + | /* RustType.kt:516 */
|
2056 2928 | #[derive(
|
2057 2929 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
2058 2930 | )]
|
2059 - | pub struct MalformedShortOutput {}
|
2931 + | pub /* StructureGenerator.kt:201 */ struct MalformedShortOutput {/* StructureGenerator.kt:201 */}
|
2932 + | /* RustType.kt:516 */
|
2060 2933 | #[allow(clippy::new_without_default)]
|
2934 + | /* RustType.kt:516 */
|
2061 2935 | #[allow(clippy::too_many_arguments)]
|
2936 + | /* RustType.kt:516 */
|
2062 2937 | #[::pyo3::pymethods]
|
2938 + | /* PythonServerStructureGenerator.kt:88 */
|
2063 2939 | impl MalformedShortOutput {
|
2064 2940 | #[new]
|
2065 2941 | pub fn new() -> Self {
|
2066 2942 | Self {}
|
2067 2943 | }
|
2068 2944 | fn __repr__(&self) -> String {
|
2069 2945 | format!("{self:?}")
|
2070 2946 | }
|
2071 2947 | fn __str__(&self) -> String {
|
2072 2948 | format!("{self:?}")
|
2073 2949 | }
|
2074 2950 | }
|
2951 + | /* PythonServerStructureGenerator.kt:111 */
|
2075 2952 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<MalformedShortOutput> {
|
2076 2953 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
2077 2954 | ob.extract::<MalformedShortOutput>().map(Box::new)
|
2078 2955 | }
|
2079 2956 | }
|
2080 2957 |
|
2081 2958 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedShortOutput> {
|
2082 2959 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
2083 2960 | (*self).into_py(py)
|
2084 2961 | }
|
2085 2962 | }
|
2963 + | /* ServerCodegenVisitor.kt:370 */
|
2086 2964 | impl MalformedShortOutput {
|
2087 - | /// Creates a new builder-style object to manufacture [`MalformedShortOutput`](crate::output::MalformedShortOutput).
|
2965 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedShortOutput`](crate::output::MalformedShortOutput).
|
2966 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2088 2967 | pub fn builder() -> crate::output::malformed_short_output::Builder {
|
2968 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
2089 2969 | crate::output::malformed_short_output::Builder::default()
|
2970 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2090 2971 | }
|
2972 + | /* ServerCodegenVisitor.kt:370 */
|
2091 2973 | }
|
2092 2974 |
|
2975 + | /* RustType.kt:516 */
|
2093 2976 | #[::pyo3::pyclass]
|
2977 + | /* PythonServerStructureGenerator.kt:63 */
|
2094 2978 | /// :rtype None:
|
2979 + | /* StructureGenerator.kt:197 */
|
2095 2980 | #[allow(missing_docs)] // documentation missing in model
|
2981 + | /* RustType.kt:516 */
|
2096 2982 | #[derive(
|
2097 2983 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
2098 2984 | )]
|
2099 - | pub struct MalformedByteOutput {}
|
2985 + | pub /* StructureGenerator.kt:201 */ struct MalformedByteOutput {/* StructureGenerator.kt:201 */}
|
2986 + | /* RustType.kt:516 */
|
2100 2987 | #[allow(clippy::new_without_default)]
|
2988 + | /* RustType.kt:516 */
|
2101 2989 | #[allow(clippy::too_many_arguments)]
|
2990 + | /* RustType.kt:516 */
|
2102 2991 | #[::pyo3::pymethods]
|
2992 + | /* PythonServerStructureGenerator.kt:88 */
|
2103 2993 | impl MalformedByteOutput {
|
2104 2994 | #[new]
|
2105 2995 | pub fn new() -> Self {
|
2106 2996 | Self {}
|
2107 2997 | }
|
2108 2998 | fn __repr__(&self) -> String {
|
2109 2999 | format!("{self:?}")
|
2110 3000 | }
|
2111 3001 | fn __str__(&self) -> String {
|
2112 3002 | format!("{self:?}")
|
2113 3003 | }
|
2114 3004 | }
|
3005 + | /* PythonServerStructureGenerator.kt:111 */
|
2115 3006 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<MalformedByteOutput> {
|
2116 3007 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
2117 3008 | ob.extract::<MalformedByteOutput>().map(Box::new)
|
2118 3009 | }
|
2119 3010 | }
|
2120 3011 |
|
2121 3012 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedByteOutput> {
|
2122 3013 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
2123 3014 | (*self).into_py(py)
|
2124 3015 | }
|
2125 3016 | }
|
3017 + | /* ServerCodegenVisitor.kt:370 */
|
2126 3018 | impl MalformedByteOutput {
|
2127 - | /// Creates a new builder-style object to manufacture [`MalformedByteOutput`](crate::output::MalformedByteOutput).
|
3019 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedByteOutput`](crate::output::MalformedByteOutput).
|
3020 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2128 3021 | pub fn builder() -> crate::output::malformed_byte_output::Builder {
|
3022 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
2129 3023 | crate::output::malformed_byte_output::Builder::default()
|
3024 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2130 3025 | }
|
3026 + | /* ServerCodegenVisitor.kt:370 */
|
2131 3027 | }
|
2132 3028 |
|
3029 + | /* RustType.kt:516 */
|
2133 3030 | #[::pyo3::pyclass]
|
3031 + | /* PythonServerStructureGenerator.kt:63 */
|
2134 3032 | /// :rtype None:
|
3033 + | /* StructureGenerator.kt:197 */
|
2135 3034 | #[allow(missing_docs)] // documentation missing in model
|
3035 + | /* RustType.kt:516 */
|
2136 3036 | #[derive(
|
2137 3037 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
2138 3038 | )]
|
2139 - | pub struct MalformedBlobOutput {}
|
3039 + | pub /* StructureGenerator.kt:201 */ struct MalformedBlobOutput {/* StructureGenerator.kt:201 */}
|
3040 + | /* RustType.kt:516 */
|
2140 3041 | #[allow(clippy::new_without_default)]
|
3042 + | /* RustType.kt:516 */
|
2141 3043 | #[allow(clippy::too_many_arguments)]
|
3044 + | /* RustType.kt:516 */
|
2142 3045 | #[::pyo3::pymethods]
|
3046 + | /* PythonServerStructureGenerator.kt:88 */
|
2143 3047 | impl MalformedBlobOutput {
|
2144 3048 | #[new]
|
2145 3049 | pub fn new() -> Self {
|
2146 3050 | Self {}
|
2147 3051 | }
|
2148 3052 | fn __repr__(&self) -> String {
|
2149 3053 | format!("{self:?}")
|
2150 3054 | }
|
2151 3055 | fn __str__(&self) -> String {
|
2152 3056 | format!("{self:?}")
|
2153 3057 | }
|
2154 3058 | }
|
3059 + | /* PythonServerStructureGenerator.kt:111 */
|
2155 3060 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<MalformedBlobOutput> {
|
2156 3061 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
2157 3062 | ob.extract::<MalformedBlobOutput>().map(Box::new)
|
2158 3063 | }
|
2159 3064 | }
|
2160 3065 |
|
2161 3066 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedBlobOutput> {
|
2162 3067 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
2163 3068 | (*self).into_py(py)
|
2164 3069 | }
|
2165 3070 | }
|
3071 + | /* ServerCodegenVisitor.kt:370 */
|
2166 3072 | impl MalformedBlobOutput {
|
2167 - | /// Creates a new builder-style object to manufacture [`MalformedBlobOutput`](crate::output::MalformedBlobOutput).
|
3073 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedBlobOutput`](crate::output::MalformedBlobOutput).
|
3074 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2168 3075 | pub fn builder() -> crate::output::malformed_blob_output::Builder {
|
3076 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
2169 3077 | crate::output::malformed_blob_output::Builder::default()
|
3078 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2170 3079 | }
|
3080 + | /* ServerCodegenVisitor.kt:370 */
|
2171 3081 | }
|
2172 3082 |
|
3083 + | /* RustType.kt:516 */
|
2173 3084 | #[::pyo3::pyclass]
|
3085 + | /* PythonServerStructureGenerator.kt:63 */
|
2174 3086 | /// :rtype None:
|
3087 + | /* StructureGenerator.kt:197 */
|
2175 3088 | #[allow(missing_docs)] // documentation missing in model
|
3089 + | /* RustType.kt:516 */
|
2176 3090 | #[derive(
|
2177 3091 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
2178 3092 | )]
|
2179 - | pub struct MalformedMapOutput {}
|
3093 + | pub /* StructureGenerator.kt:201 */ struct MalformedMapOutput {/* StructureGenerator.kt:201 */}
|
3094 + | /* RustType.kt:516 */
|
2180 3095 | #[allow(clippy::new_without_default)]
|
3096 + | /* RustType.kt:516 */
|
2181 3097 | #[allow(clippy::too_many_arguments)]
|
3098 + | /* RustType.kt:516 */
|
2182 3099 | #[::pyo3::pymethods]
|
3100 + | /* PythonServerStructureGenerator.kt:88 */
|
2183 3101 | impl MalformedMapOutput {
|
2184 3102 | #[new]
|
2185 3103 | pub fn new() -> Self {
|
2186 3104 | Self {}
|
2187 3105 | }
|
2188 3106 | fn __repr__(&self) -> String {
|
2189 3107 | format!("{self:?}")
|
2190 3108 | }
|
2191 3109 | fn __str__(&self) -> String {
|
2192 3110 | format!("{self:?}")
|
2193 3111 | }
|
2194 3112 | }
|
3113 + | /* PythonServerStructureGenerator.kt:111 */
|
2195 3114 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<MalformedMapOutput> {
|
2196 3115 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
2197 3116 | ob.extract::<MalformedMapOutput>().map(Box::new)
|
2198 3117 | }
|
2199 3118 | }
|
2200 3119 |
|
2201 3120 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedMapOutput> {
|
2202 3121 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
2203 3122 | (*self).into_py(py)
|
2204 3123 | }
|
2205 3124 | }
|
3125 + | /* ServerCodegenVisitor.kt:370 */
|
2206 3126 | impl MalformedMapOutput {
|
2207 - | /// Creates a new builder-style object to manufacture [`MalformedMapOutput`](crate::output::MalformedMapOutput).
|
3127 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedMapOutput`](crate::output::MalformedMapOutput).
|
3128 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2208 3129 | pub fn builder() -> crate::output::malformed_map_output::Builder {
|
3130 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
2209 3131 | crate::output::malformed_map_output::Builder::default()
|
3132 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2210 3133 | }
|
3134 + | /* ServerCodegenVisitor.kt:370 */
|
2211 3135 | }
|
2212 3136 |
|
3137 + | /* RustType.kt:516 */
|
2213 3138 | #[::pyo3::pyclass]
|
3139 + | /* PythonServerStructureGenerator.kt:63 */
|
2214 3140 | /// :rtype None:
|
3141 + | /* StructureGenerator.kt:197 */
|
2215 3142 | #[allow(missing_docs)] // documentation missing in model
|
3143 + | /* RustType.kt:516 */
|
2216 3144 | #[derive(
|
2217 3145 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
2218 3146 | )]
|
2219 - | pub struct MalformedListOutput {}
|
3147 + | pub /* StructureGenerator.kt:201 */ struct MalformedListOutput {/* StructureGenerator.kt:201 */}
|
3148 + | /* RustType.kt:516 */
|
2220 3149 | #[allow(clippy::new_without_default)]
|
3150 + | /* RustType.kt:516 */
|
2221 3151 | #[allow(clippy::too_many_arguments)]
|
3152 + | /* RustType.kt:516 */
|
2222 3153 | #[::pyo3::pymethods]
|
3154 + | /* PythonServerStructureGenerator.kt:88 */
|
2223 3155 | impl MalformedListOutput {
|
2224 3156 | #[new]
|
2225 3157 | pub fn new() -> Self {
|
2226 3158 | Self {}
|
2227 3159 | }
|
2228 3160 | fn __repr__(&self) -> String {
|
2229 3161 | format!("{self:?}")
|
2230 3162 | }
|
2231 3163 | fn __str__(&self) -> String {
|
2232 3164 | format!("{self:?}")
|
2233 3165 | }
|
2234 3166 | }
|
3167 + | /* PythonServerStructureGenerator.kt:111 */
|
2235 3168 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<MalformedListOutput> {
|
2236 3169 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
2237 3170 | ob.extract::<MalformedListOutput>().map(Box::new)
|
2238 3171 | }
|
2239 3172 | }
|
2240 3173 |
|
2241 3174 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedListOutput> {
|
2242 3175 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
2243 3176 | (*self).into_py(py)
|
2244 3177 | }
|
2245 3178 | }
|
3179 + | /* ServerCodegenVisitor.kt:370 */
|
2246 3180 | impl MalformedListOutput {
|
2247 - | /// Creates a new builder-style object to manufacture [`MalformedListOutput`](crate::output::MalformedListOutput).
|
3181 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedListOutput`](crate::output::MalformedListOutput).
|
3182 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2248 3183 | pub fn builder() -> crate::output::malformed_list_output::Builder {
|
3184 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
2249 3185 | crate::output::malformed_list_output::Builder::default()
|
3186 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2250 3187 | }
|
3188 + | /* ServerCodegenVisitor.kt:370 */
|
2251 3189 | }
|
2252 3190 |
|
3191 + | /* RustType.kt:516 */
|
2253 3192 | #[::pyo3::pyclass]
|
3193 + | /* PythonServerStructureGenerator.kt:63 */
|
2254 3194 | /// :rtype None:
|
3195 + | /* StructureGenerator.kt:197 */
|
2255 3196 | #[allow(missing_docs)] // documentation missing in model
|
3197 + | /* RustType.kt:516 */
|
2256 3198 | #[derive(
|
2257 3199 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
2258 3200 | )]
|
2259 - | pub struct MalformedBooleanOutput {}
|
3201 + | pub /* StructureGenerator.kt:201 */ struct MalformedBooleanOutput {/* StructureGenerator.kt:201 */}
|
3202 + | /* RustType.kt:516 */
|
2260 3203 | #[allow(clippy::new_without_default)]
|
3204 + | /* RustType.kt:516 */
|
2261 3205 | #[allow(clippy::too_many_arguments)]
|
3206 + | /* RustType.kt:516 */
|
2262 3207 | #[::pyo3::pymethods]
|
3208 + | /* PythonServerStructureGenerator.kt:88 */
|
2263 3209 | impl MalformedBooleanOutput {
|
2264 3210 | #[new]
|
2265 3211 | pub fn new() -> Self {
|
2266 3212 | Self {}
|
2267 3213 | }
|
2268 3214 | fn __repr__(&self) -> String {
|
2269 3215 | format!("{self:?}")
|
2270 3216 | }
|
2271 3217 | fn __str__(&self) -> String {
|
2272 3218 | format!("{self:?}")
|
2273 3219 | }
|
2274 3220 | }
|
3221 + | /* PythonServerStructureGenerator.kt:111 */
|
2275 3222 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<MalformedBooleanOutput> {
|
2276 3223 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
2277 3224 | ob.extract::<MalformedBooleanOutput>().map(Box::new)
|
2278 3225 | }
|
2279 3226 | }
|
2280 3227 |
|
2281 3228 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedBooleanOutput> {
|
2282 3229 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
2283 3230 | (*self).into_py(py)
|
2284 3231 | }
|
2285 3232 | }
|
3233 + | /* ServerCodegenVisitor.kt:370 */
|
2286 3234 | impl MalformedBooleanOutput {
|
2287 - | /// Creates a new builder-style object to manufacture [`MalformedBooleanOutput`](crate::output::MalformedBooleanOutput).
|
3235 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedBooleanOutput`](crate::output::MalformedBooleanOutput).
|
3236 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2288 3237 | pub fn builder() -> crate::output::malformed_boolean_output::Builder {
|
3238 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
2289 3239 | crate::output::malformed_boolean_output::Builder::default()
|
3240 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2290 3241 | }
|
3242 + | /* ServerCodegenVisitor.kt:370 */
|
2291 3243 | }
|
2292 3244 |
|
3245 + | /* RustType.kt:516 */
|
2293 3246 | #[::pyo3::pyclass]
|
3247 + | /* PythonServerStructureGenerator.kt:63 */
|
2294 3248 | /// :rtype None:
|
3249 + | /* StructureGenerator.kt:197 */
|
2295 3250 | #[allow(missing_docs)] // documentation missing in model
|
3251 + | /* RustType.kt:516 */
|
2296 3252 | #[derive(
|
2297 3253 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
2298 3254 | )]
|
2299 - | pub struct MalformedUnionOutput {}
|
3255 + | pub /* StructureGenerator.kt:201 */ struct MalformedUnionOutput {/* StructureGenerator.kt:201 */}
|
3256 + | /* RustType.kt:516 */
|
2300 3257 | #[allow(clippy::new_without_default)]
|
3258 + | /* RustType.kt:516 */
|
2301 3259 | #[allow(clippy::too_many_arguments)]
|
3260 + | /* RustType.kt:516 */
|
2302 3261 | #[::pyo3::pymethods]
|
3262 + | /* PythonServerStructureGenerator.kt:88 */
|
2303 3263 | impl MalformedUnionOutput {
|
2304 3264 | #[new]
|
2305 3265 | pub fn new() -> Self {
|
2306 3266 | Self {}
|
2307 3267 | }
|
2308 3268 | fn __repr__(&self) -> String {
|
2309 3269 | format!("{self:?}")
|
2310 3270 | }
|
2311 3271 | fn __str__(&self) -> String {
|
2312 3272 | format!("{self:?}")
|
2313 3273 | }
|
2314 3274 | }
|
3275 + | /* PythonServerStructureGenerator.kt:111 */
|
2315 3276 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<MalformedUnionOutput> {
|
2316 3277 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
2317 3278 | ob.extract::<MalformedUnionOutput>().map(Box::new)
|
2318 3279 | }
|
2319 3280 | }
|
2320 3281 |
|
2321 3282 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedUnionOutput> {
|
2322 3283 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
2323 3284 | (*self).into_py(py)
|
2324 3285 | }
|
2325 3286 | }
|
3287 + | /* ServerCodegenVisitor.kt:370 */
|
2326 3288 | impl MalformedUnionOutput {
|
2327 - | /// Creates a new builder-style object to manufacture [`MalformedUnionOutput`](crate::output::MalformedUnionOutput).
|
3289 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedUnionOutput`](crate::output::MalformedUnionOutput).
|
3290 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2328 3291 | pub fn builder() -> crate::output::malformed_union_output::Builder {
|
3292 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
2329 3293 | crate::output::malformed_union_output::Builder::default()
|
3294 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2330 3295 | }
|
3296 + | /* ServerCodegenVisitor.kt:370 */
|
2331 3297 | }
|
2332 3298 |
|
3299 + | /* RustType.kt:516 */
|
2333 3300 | #[::pyo3::pyclass]
|
3301 + | /* PythonServerStructureGenerator.kt:63 */
|
2334 3302 | /// :rtype None:
|
3303 + | /* StructureGenerator.kt:197 */
|
2335 3304 | #[allow(missing_docs)] // documentation missing in model
|
3305 + | /* RustType.kt:516 */
|
2336 3306 | #[derive(
|
2337 3307 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
2338 3308 | )]
|
2339 - | pub struct MalformedIntegerOutput {}
|
3309 + | pub /* StructureGenerator.kt:201 */ struct MalformedIntegerOutput {/* StructureGenerator.kt:201 */}
|
3310 + | /* RustType.kt:516 */
|
2340 3311 | #[allow(clippy::new_without_default)]
|
3312 + | /* RustType.kt:516 */
|
2341 3313 | #[allow(clippy::too_many_arguments)]
|
3314 + | /* RustType.kt:516 */
|
2342 3315 | #[::pyo3::pymethods]
|
3316 + | /* PythonServerStructureGenerator.kt:88 */
|
2343 3317 | impl MalformedIntegerOutput {
|
2344 3318 | #[new]
|
2345 3319 | pub fn new() -> Self {
|
2346 3320 | Self {}
|
2347 3321 | }
|
2348 3322 | fn __repr__(&self) -> String {
|
2349 3323 | format!("{self:?}")
|
2350 3324 | }
|
2351 3325 | fn __str__(&self) -> String {
|
2352 3326 | format!("{self:?}")
|
2353 3327 | }
|
2354 3328 | }
|
3329 + | /* PythonServerStructureGenerator.kt:111 */
|
2355 3330 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<MalformedIntegerOutput> {
|
2356 3331 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
2357 3332 | ob.extract::<MalformedIntegerOutput>().map(Box::new)
|
2358 3333 | }
|
2359 3334 | }
|
2360 3335 |
|
2361 3336 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedIntegerOutput> {
|
2362 3337 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
2363 3338 | (*self).into_py(py)
|
2364 3339 | }
|
2365 3340 | }
|
3341 + | /* ServerCodegenVisitor.kt:370 */
|
2366 3342 | impl MalformedIntegerOutput {
|
2367 - | /// Creates a new builder-style object to manufacture [`MalformedIntegerOutput`](crate::output::MalformedIntegerOutput).
|
3343 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedIntegerOutput`](crate::output::MalformedIntegerOutput).
|
3344 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2368 3345 | pub fn builder() -> crate::output::malformed_integer_output::Builder {
|
3346 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
2369 3347 | crate::output::malformed_integer_output::Builder::default()
|
3348 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2370 3349 | }
|
3350 + | /* ServerCodegenVisitor.kt:370 */
|
2371 3351 | }
|
2372 3352 |
|
3353 + | /* RustType.kt:516 */
|
2373 3354 | #[::pyo3::pyclass]
|
3355 + | /* PythonServerStructureGenerator.kt:63 */
|
2374 3356 | /// :rtype None:
|
3357 + | /* StructureGenerator.kt:197 */
|
2375 3358 | #[allow(missing_docs)] // documentation missing in model
|
3359 + | /* RustType.kt:516 */
|
2376 3360 | #[derive(
|
2377 3361 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
2378 3362 | )]
|
2379 - | pub struct MalformedRequestBodyOutput {}
|
3363 + | pub /* StructureGenerator.kt:201 */ struct MalformedRequestBodyOutput {/* StructureGenerator.kt:201 */}
|
3364 + | /* RustType.kt:516 */
|
2380 3365 | #[allow(clippy::new_without_default)]
|
3366 + | /* RustType.kt:516 */
|
2381 3367 | #[allow(clippy::too_many_arguments)]
|
3368 + | /* RustType.kt:516 */
|
2382 3369 | #[::pyo3::pymethods]
|
3370 + | /* PythonServerStructureGenerator.kt:88 */
|
2383 3371 | impl MalformedRequestBodyOutput {
|
2384 3372 | #[new]
|
2385 3373 | pub fn new() -> Self {
|
2386 3374 | Self {}
|
2387 3375 | }
|
2388 3376 | fn __repr__(&self) -> String {
|
2389 3377 | format!("{self:?}")
|
2390 3378 | }
|
2391 3379 | fn __str__(&self) -> String {
|
2392 3380 | format!("{self:?}")
|
2393 3381 | }
|
2394 3382 | }
|
3383 + | /* PythonServerStructureGenerator.kt:111 */
|
2395 3384 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<MalformedRequestBodyOutput> {
|
2396 3385 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
2397 3386 | ob.extract::<MalformedRequestBodyOutput>().map(Box::new)
|
2398 3387 | }
|
2399 3388 | }
|
2400 3389 |
|
2401 3390 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MalformedRequestBodyOutput> {
|
2402 3391 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
2403 3392 | (*self).into_py(py)
|
2404 3393 | }
|
2405 3394 | }
|
3395 + | /* ServerCodegenVisitor.kt:370 */
|
2406 3396 | impl MalformedRequestBodyOutput {
|
2407 - | /// Creates a new builder-style object to manufacture [`MalformedRequestBodyOutput`](crate::output::MalformedRequestBodyOutput).
|
3397 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MalformedRequestBodyOutput`](crate::output::MalformedRequestBodyOutput).
|
3398 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2408 3399 | pub fn builder() -> crate::output::malformed_request_body_output::Builder {
|
3400 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
2409 3401 | crate::output::malformed_request_body_output::Builder::default()
|
3402 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2410 3403 | }
|
3404 + | /* ServerCodegenVisitor.kt:370 */
|
2411 3405 | }
|
2412 3406 |
|
3407 + | /* RustType.kt:516 */
|
2413 3408 | #[::pyo3::pyclass]
|
3409 + | /* PythonServerStructureGenerator.kt:63 */
|
2414 3410 | /// :param foo typing.Optional\[str\]:
|
2415 3411 | /// :rtype None:
|
3412 + | /* StructureGenerator.kt:197 */
|
2416 3413 | #[allow(missing_docs)] // documentation missing in model
|
3414 + | /* RustType.kt:516 */
|
2417 3415 | #[derive(
|
2418 3416 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
2419 3417 | )]
|
2420 - | pub struct HttpChecksumRequiredOutput {
|
3418 + | pub /* StructureGenerator.kt:201 */ struct HttpChecksumRequiredOutput {
|
3419 + | /* RustType.kt:516 */
|
2421 3420 | #[pyo3(get, set)]
|
3421 + | /* PythonServerStructureGenerator.kt:80 */
|
2422 3422 | /// :type typing.Optional\[str\]:
|
3423 + | /* StructureGenerator.kt:231 */
|
2423 3424 | #[allow(missing_docs)] // documentation missing in model
|
2424 3425 | pub foo: ::std::option::Option<::std::string::String>,
|
3426 + | /* StructureGenerator.kt:201 */
|
2425 3427 | }
|
3428 + | /* StructureGenerator.kt:135 */
|
2426 3429 | impl HttpChecksumRequiredOutput {
|
3430 + | /* StructureGenerator.kt:231 */
|
2427 3431 | #[allow(missing_docs)] // documentation missing in model
|
3432 + | /* StructureGenerator.kt:166 */
|
2428 3433 | pub fn foo(&self) -> ::std::option::Option<&str> {
|
3434 + | /* StructureGenerator.kt:169 */
|
2429 3435 | self.foo.as_deref()
|
3436 + | /* StructureGenerator.kt:166 */
|
2430 3437 | }
|
3438 + | /* StructureGenerator.kt:135 */
|
2431 3439 | }
|
3440 + | /* RustType.kt:516 */
|
2432 3441 | #[allow(clippy::new_without_default)]
|
3442 + | /* RustType.kt:516 */
|
2433 3443 | #[allow(clippy::too_many_arguments)]
|
3444 + | /* RustType.kt:516 */
|
2434 3445 | #[::pyo3::pymethods]
|
3446 + | /* PythonServerStructureGenerator.kt:88 */
|
2435 3447 | impl HttpChecksumRequiredOutput {
|
2436 3448 | #[new]
|
2437 3449 | pub fn new(foo: ::std::option::Option<::std::string::String>) -> Self {
|
2438 3450 | Self { foo }
|
2439 3451 | }
|
2440 3452 | fn __repr__(&self) -> String {
|
2441 3453 | format!("{self:?}")
|
2442 3454 | }
|
2443 3455 | fn __str__(&self) -> String {
|
2444 3456 | format!("{self:?}")
|
2445 3457 | }
|
2446 3458 | }
|
3459 + | /* PythonServerStructureGenerator.kt:111 */
|
2447 3460 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<HttpChecksumRequiredOutput> {
|
2448 3461 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
2449 3462 | ob.extract::<HttpChecksumRequiredOutput>().map(Box::new)
|
2450 3463 | }
|
2451 3464 | }
|
2452 3465 |
|
2453 3466 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<HttpChecksumRequiredOutput> {
|
2454 3467 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
2455 3468 | (*self).into_py(py)
|
2456 3469 | }
|
2457 3470 | }
|
3471 + | /* ServerCodegenVisitor.kt:370 */
|
2458 3472 | impl HttpChecksumRequiredOutput {
|
2459 - | /// Creates a new builder-style object to manufacture [`HttpChecksumRequiredOutput`](crate::output::HttpChecksumRequiredOutput).
|
3473 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`HttpChecksumRequiredOutput`](crate::output::HttpChecksumRequiredOutput).
|
3474 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2460 3475 | pub fn builder() -> crate::output::http_checksum_required_output::Builder {
|
3476 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
2461 3477 | crate::output::http_checksum_required_output::Builder::default()
|
3478 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2462 3479 | }
|
3480 + | /* ServerCodegenVisitor.kt:370 */
|
2463 3481 | }
|
2464 3482 |
|
3483 + | /* RustType.kt:516 */
|
2465 3484 | #[::pyo3::pyclass]
|
3485 + | /* PythonServerStructureGenerator.kt:63 */
|
2466 3486 | /// :rtype None:
|
3487 + | /* StructureGenerator.kt:197 */
|
2467 3488 | #[allow(missing_docs)] // documentation missing in model
|
3489 + | /* RustType.kt:516 */
|
2468 3490 | #[derive(
|
2469 3491 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
2470 3492 | )]
|
2471 - | pub struct HostWithPathOperationOutput {}
|
3493 + | pub /* StructureGenerator.kt:201 */ struct HostWithPathOperationOutput {/* StructureGenerator.kt:201 */}
|
3494 + | /* RustType.kt:516 */
|
2472 3495 | #[allow(clippy::new_without_default)]
|
3496 + | /* RustType.kt:516 */
|
2473 3497 | #[allow(clippy::too_many_arguments)]
|
3498 + | /* RustType.kt:516 */
|
2474 3499 | #[::pyo3::pymethods]
|
3500 + | /* PythonServerStructureGenerator.kt:88 */
|
2475 3501 | impl HostWithPathOperationOutput {
|
2476 3502 | #[new]
|
2477 3503 | pub fn new() -> Self {
|
2478 3504 | Self {}
|
2479 3505 | }
|
2480 3506 | fn __repr__(&self) -> String {
|
2481 3507 | format!("{self:?}")
|
2482 3508 | }
|
2483 3509 | fn __str__(&self) -> String {
|
2484 3510 | format!("{self:?}")
|
2485 3511 | }
|
2486 3512 | }
|
3513 + | /* PythonServerStructureGenerator.kt:111 */
|
2487 3514 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<HostWithPathOperationOutput> {
|
2488 3515 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
2489 3516 | ob.extract::<HostWithPathOperationOutput>().map(Box::new)
|
2490 3517 | }
|
2491 3518 | }
|
2492 3519 |
|
2493 3520 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<HostWithPathOperationOutput> {
|
2494 3521 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
2495 3522 | (*self).into_py(py)
|
2496 3523 | }
|
2497 3524 | }
|
3525 + | /* ServerCodegenVisitor.kt:370 */
|
2498 3526 | impl HostWithPathOperationOutput {
|
2499 - | /// Creates a new builder-style object to manufacture [`HostWithPathOperationOutput`](crate::output::HostWithPathOperationOutput).
|
3527 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`HostWithPathOperationOutput`](crate::output::HostWithPathOperationOutput).
|
3528 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2500 3529 | pub fn builder() -> crate::output::host_with_path_operation_output::Builder {
|
3530 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
2501 3531 | crate::output::host_with_path_operation_output::Builder::default()
|
3532 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2502 3533 | }
|
3534 + | /* ServerCodegenVisitor.kt:370 */
|
2503 3535 | }
|
2504 3536 |
|
3537 + | /* RustType.kt:516 */
|
2505 3538 | #[::pyo3::pyclass]
|
3539 + | /* PythonServerStructureGenerator.kt:63 */
|
2506 3540 | /// :rtype None:
|
3541 + | /* StructureGenerator.kt:197 */
|
2507 3542 | #[allow(missing_docs)] // documentation missing in model
|
3543 + | /* RustType.kt:516 */
|
2508 3544 | #[derive(
|
2509 3545 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
2510 3546 | )]
|
2511 - | pub struct EndpointWithHostLabelOperationOutput {}
|
3547 + | pub /* StructureGenerator.kt:201 */ struct EndpointWithHostLabelOperationOutput {/* StructureGenerator.kt:201 */}
|
3548 + | /* RustType.kt:516 */
|
2512 3549 | #[allow(clippy::new_without_default)]
|
3550 + | /* RustType.kt:516 */
|
2513 3551 | #[allow(clippy::too_many_arguments)]
|
3552 + | /* RustType.kt:516 */
|
2514 3553 | #[::pyo3::pymethods]
|
3554 + | /* PythonServerStructureGenerator.kt:88 */
|
2515 3555 | impl EndpointWithHostLabelOperationOutput {
|
2516 3556 | #[new]
|
2517 3557 | pub fn new() -> Self {
|
2518 3558 | Self {}
|
2519 3559 | }
|
2520 3560 | fn __repr__(&self) -> String {
|
2521 3561 | format!("{self:?}")
|
2522 3562 | }
|
2523 3563 | fn __str__(&self) -> String {
|
2524 3564 | format!("{self:?}")
|
2525 3565 | }
|
2526 3566 | }
|
3567 + | /* PythonServerStructureGenerator.kt:111 */
|
2527 3568 | impl<'source> ::pyo3::FromPyObject<'source>
|
2528 3569 | for std::boxed::Box<EndpointWithHostLabelOperationOutput>
|
2529 3570 | {
|
2530 3571 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
2531 3572 | ob.extract::<EndpointWithHostLabelOperationOutput>()
|
2532 3573 | .map(Box::new)
|
2533 3574 | }
|
2534 3575 | }
|
2535 3576 |
|
2536 3577 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<EndpointWithHostLabelOperationOutput> {
|
2537 3578 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
2538 3579 | (*self).into_py(py)
|
2539 3580 | }
|
2540 3581 | }
|
3582 + | /* ServerCodegenVisitor.kt:370 */
|
2541 3583 | impl EndpointWithHostLabelOperationOutput {
|
2542 - | /// Creates a new builder-style object to manufacture [`EndpointWithHostLabelOperationOutput`](crate::output::EndpointWithHostLabelOperationOutput).
|
3584 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`EndpointWithHostLabelOperationOutput`](crate::output::EndpointWithHostLabelOperationOutput).
|
3585 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2543 3586 | pub fn builder() -> crate::output::endpoint_with_host_label_operation_output::Builder {
|
3587 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
2544 3588 | crate::output::endpoint_with_host_label_operation_output::Builder::default()
|
3589 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2545 3590 | }
|
3591 + | /* ServerCodegenVisitor.kt:370 */
|
2546 3592 | }
|
2547 3593 |
|
3594 + | /* RustType.kt:516 */
|
2548 3595 | #[::pyo3::pyclass]
|
3596 + | /* PythonServerStructureGenerator.kt:63 */
|
2549 3597 | /// :rtype None:
|
3598 + | /* StructureGenerator.kt:197 */
|
2550 3599 | #[allow(missing_docs)] // documentation missing in model
|
3600 + | /* RustType.kt:516 */
|
2551 3601 | #[derive(
|
2552 3602 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
2553 3603 | )]
|
2554 - | pub struct EndpointOperationOutput {}
|
3604 + | pub /* StructureGenerator.kt:201 */ struct EndpointOperationOutput {/* StructureGenerator.kt:201 */}
|
3605 + | /* RustType.kt:516 */
|
2555 3606 | #[allow(clippy::new_without_default)]
|
3607 + | /* RustType.kt:516 */
|
2556 3608 | #[allow(clippy::too_many_arguments)]
|
3609 + | /* RustType.kt:516 */
|
2557 3610 | #[::pyo3::pymethods]
|
3611 + | /* PythonServerStructureGenerator.kt:88 */
|
2558 3612 | impl EndpointOperationOutput {
|
2559 3613 | #[new]
|
2560 3614 | pub fn new() -> Self {
|
2561 3615 | Self {}
|
2562 3616 | }
|
2563 3617 | fn __repr__(&self) -> String {
|
2564 3618 | format!("{self:?}")
|
2565 3619 | }
|
2566 3620 | fn __str__(&self) -> String {
|
2567 3621 | format!("{self:?}")
|
2568 3622 | }
|
2569 3623 | }
|
3624 + | /* PythonServerStructureGenerator.kt:111 */
|
2570 3625 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<EndpointOperationOutput> {
|
2571 3626 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
2572 3627 | ob.extract::<EndpointOperationOutput>().map(Box::new)
|
2573 3628 | }
|
2574 3629 | }
|
2575 3630 |
|
2576 3631 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<EndpointOperationOutput> {
|
2577 3632 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
2578 3633 | (*self).into_py(py)
|
2579 3634 | }
|
2580 3635 | }
|
3636 + | /* ServerCodegenVisitor.kt:370 */
|
2581 3637 | impl EndpointOperationOutput {
|
2582 - | /// Creates a new builder-style object to manufacture [`EndpointOperationOutput`](crate::output::EndpointOperationOutput).
|
3638 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`EndpointOperationOutput`](crate::output::EndpointOperationOutput).
|
3639 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2583 3640 | pub fn builder() -> crate::output::endpoint_operation_output::Builder {
|
3641 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
2584 3642 | crate::output::endpoint_operation_output::Builder::default()
|
3643 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2585 3644 | }
|
3645 + | /* ServerCodegenVisitor.kt:370 */
|
2586 3646 | }
|
2587 3647 |
|
3648 + | /* RustType.kt:516 */
|
2588 3649 | #[::pyo3::pyclass]
|
3650 + | /* PythonServerStructureGenerator.kt:63 */
|
2589 3651 | /// :param value rest_json.model.UnionWithJsonName:
|
2590 3652 | /// :rtype None:
|
3653 + | /* StructureGenerator.kt:197 */
|
2591 3654 | #[allow(missing_docs)] // documentation missing in model
|
3655 + | /* RustType.kt:516 */
|
2592 3656 | #[derive(
|
2593 3657 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
2594 3658 | )]
|
2595 - | pub struct PostUnionWithJsonNameOutput {
|
3659 + | pub /* StructureGenerator.kt:201 */ struct PostUnionWithJsonNameOutput {
|
3660 + | /* RustType.kt:516 */
|
2596 3661 | #[pyo3(get, set)]
|
3662 + | /* PythonServerStructureGenerator.kt:80 */
|
2597 3663 | /// :type rest_json.model.UnionWithJsonName:
|
3664 + | /* StructureGenerator.kt:231 */
|
2598 3665 | #[allow(missing_docs)] // documentation missing in model
|
2599 3666 | pub value: crate::model::UnionWithJsonName,
|
3667 + | /* StructureGenerator.kt:201 */
|
2600 3668 | }
|
3669 + | /* StructureGenerator.kt:135 */
|
2601 3670 | impl PostUnionWithJsonNameOutput {
|
3671 + | /* StructureGenerator.kt:231 */
|
2602 3672 | #[allow(missing_docs)] // documentation missing in model
|
3673 + | /* StructureGenerator.kt:166 */
|
2603 3674 | pub fn value(&self) -> &crate::model::UnionWithJsonName {
|
3675 + | /* StructureGenerator.kt:172 */
|
2604 3676 | &self.value
|
3677 + | /* StructureGenerator.kt:166 */
|
2605 3678 | }
|
3679 + | /* StructureGenerator.kt:135 */
|
2606 3680 | }
|
3681 + | /* RustType.kt:516 */
|
2607 3682 | #[allow(clippy::new_without_default)]
|
3683 + | /* RustType.kt:516 */
|
2608 3684 | #[allow(clippy::too_many_arguments)]
|
3685 + | /* RustType.kt:516 */
|
2609 3686 | #[::pyo3::pymethods]
|
3687 + | /* PythonServerStructureGenerator.kt:88 */
|
2610 3688 | impl PostUnionWithJsonNameOutput {
|
2611 3689 | #[new]
|
2612 3690 | pub fn new(value: crate::model::UnionWithJsonName) -> Self {
|
2613 3691 | Self { value }
|
2614 3692 | }
|
2615 3693 | fn __repr__(&self) -> String {
|
2616 3694 | format!("{self:?}")
|
2617 3695 | }
|
2618 3696 | fn __str__(&self) -> String {
|
2619 3697 | format!("{self:?}")
|
2620 3698 | }
|
2621 3699 | }
|
3700 + | /* PythonServerStructureGenerator.kt:111 */
|
2622 3701 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<PostUnionWithJsonNameOutput> {
|
2623 3702 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
2624 3703 | ob.extract::<PostUnionWithJsonNameOutput>().map(Box::new)
|
2625 3704 | }
|
2626 3705 | }
|
2627 3706 |
|
2628 3707 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<PostUnionWithJsonNameOutput> {
|
2629 3708 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
2630 3709 | (*self).into_py(py)
|
2631 3710 | }
|
2632 3711 | }
|
3712 + | /* ServerCodegenVisitor.kt:370 */
|
2633 3713 | impl PostUnionWithJsonNameOutput {
|
2634 - | /// Creates a new builder-style object to manufacture [`PostUnionWithJsonNameOutput`](crate::output::PostUnionWithJsonNameOutput).
|
3714 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`PostUnionWithJsonNameOutput`](crate::output::PostUnionWithJsonNameOutput).
|
3715 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2635 3716 | pub fn builder() -> crate::output::post_union_with_json_name_output::Builder {
|
3717 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
2636 3718 | crate::output::post_union_with_json_name_output::Builder::default()
|
3719 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2637 3720 | }
|
3721 + | /* ServerCodegenVisitor.kt:370 */
|
2638 3722 | }
|
2639 3723 |
|
3724 + | /* RustType.kt:516 */
|
2640 3725 | #[::pyo3::pyclass]
|
3726 + | /* PythonServerStructureGenerator.kt:63 */
|
2641 3727 | /// :param action rest_json.model.PlayerAction:
|
2642 3728 | /// :rtype None:
|
3729 + | /* StructureGenerator.kt:197 */
|
2643 3730 | #[allow(missing_docs)] // documentation missing in model
|
3731 + | /* RustType.kt:516 */
|
2644 3732 | #[derive(
|
2645 3733 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
2646 3734 | )]
|
2647 - | pub struct PostPlayerActionOutput {
|
3735 + | pub /* StructureGenerator.kt:201 */ struct PostPlayerActionOutput {
|
3736 + | /* RustType.kt:516 */
|
2648 3737 | #[pyo3(get, set)]
|
3738 + | /* PythonServerStructureGenerator.kt:80 */
|
2649 3739 | /// :type rest_json.model.PlayerAction:
|
3740 + | /* StructureGenerator.kt:231 */
|
2650 3741 | #[allow(missing_docs)] // documentation missing in model
|
2651 3742 | pub action: crate::model::PlayerAction,
|
3743 + | /* StructureGenerator.kt:201 */
|
2652 3744 | }
|
3745 + | /* StructureGenerator.kt:135 */
|
2653 3746 | impl PostPlayerActionOutput {
|
3747 + | /* StructureGenerator.kt:231 */
|
2654 3748 | #[allow(missing_docs)] // documentation missing in model
|
3749 + | /* StructureGenerator.kt:166 */
|
2655 3750 | pub fn action(&self) -> &crate::model::PlayerAction {
|
3751 + | /* StructureGenerator.kt:172 */
|
2656 3752 | &self.action
|
3753 + | /* StructureGenerator.kt:166 */
|
2657 3754 | }
|
3755 + | /* StructureGenerator.kt:135 */
|
2658 3756 | }
|
3757 + | /* RustType.kt:516 */
|
2659 3758 | #[allow(clippy::new_without_default)]
|
3759 + | /* RustType.kt:516 */
|
2660 3760 | #[allow(clippy::too_many_arguments)]
|
3761 + | /* RustType.kt:516 */
|
2661 3762 | #[::pyo3::pymethods]
|
3763 + | /* PythonServerStructureGenerator.kt:88 */
|
2662 3764 | impl PostPlayerActionOutput {
|
2663 3765 | #[new]
|
2664 3766 | pub fn new(action: crate::model::PlayerAction) -> Self {
|
2665 3767 | Self { action }
|
2666 3768 | }
|
2667 3769 | fn __repr__(&self) -> String {
|
2668 3770 | format!("{self:?}")
|
2669 3771 | }
|
2670 3772 | fn __str__(&self) -> String {
|
2671 3773 | format!("{self:?}")
|
2672 3774 | }
|
2673 3775 | }
|
3776 + | /* PythonServerStructureGenerator.kt:111 */
|
2674 3777 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<PostPlayerActionOutput> {
|
2675 3778 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
2676 3779 | ob.extract::<PostPlayerActionOutput>().map(Box::new)
|
2677 3780 | }
|
2678 3781 | }
|
2679 3782 |
|
2680 3783 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<PostPlayerActionOutput> {
|
2681 3784 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
2682 3785 | (*self).into_py(py)
|
2683 3786 | }
|
2684 3787 | }
|
3788 + | /* ServerCodegenVisitor.kt:370 */
|
2685 3789 | impl PostPlayerActionOutput {
|
2686 - | /// Creates a new builder-style object to manufacture [`PostPlayerActionOutput`](crate::output::PostPlayerActionOutput).
|
3790 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`PostPlayerActionOutput`](crate::output::PostPlayerActionOutput).
|
3791 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2687 3792 | pub fn builder() -> crate::output::post_player_action_output::Builder {
|
3793 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
2688 3794 | crate::output::post_player_action_output::Builder::default()
|
3795 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2689 3796 | }
|
3797 + | /* ServerCodegenVisitor.kt:370 */
|
2690 3798 | }
|
2691 3799 |
|
3800 + | /* RustType.kt:516 */
|
2692 3801 | #[::pyo3::pyclass]
|
3802 + | /* PythonServerStructureGenerator.kt:63 */
|
2693 3803 | /// :param contents typing.Optional\[rest_json.model.MyUnion\]:
|
2694 3804 | /// :rtype None:
|
2695 - | /// A shared structure that contains a single union member.
|
3805 + | /// /* StructureGenerator.kt:197 */A shared structure that contains a single union member.
|
3806 + | /* RustType.kt:516 */
|
2696 3807 | #[derive(::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug)]
|
2697 - | pub struct JsonUnionsOutput {
|
3808 + | pub /* StructureGenerator.kt:201 */ struct JsonUnionsOutput {
|
3809 + | /* RustType.kt:516 */
|
2698 3810 | #[pyo3(get, set)]
|
3811 + | /* PythonServerStructureGenerator.kt:80 */
|
2699 3812 | /// :type typing.Optional\[rest_json.model.MyUnion\]:
|
2700 - | /// A union with a representative set of types for members.
|
3813 + | /// /* StructureGenerator.kt:231 */A union with a representative set of types for members.
|
2701 3814 | pub contents: ::std::option::Option<crate::model::MyUnion>,
|
3815 + | /* StructureGenerator.kt:201 */
|
2702 3816 | }
|
3817 + | /* StructureGenerator.kt:135 */
|
2703 3818 | impl JsonUnionsOutput {
|
2704 - | /// A union with a representative set of types for members.
|
3819 + | /// /* StructureGenerator.kt:231 */A union with a representative set of types for members.
|
3820 + | /* StructureGenerator.kt:166 */
|
2705 3821 | pub fn contents(&self) -> ::std::option::Option<&crate::model::MyUnion> {
|
3822 + | /* StructureGenerator.kt:170 */
|
2706 3823 | self.contents.as_ref()
|
3824 + | /* StructureGenerator.kt:166 */
|
2707 3825 | }
|
3826 + | /* StructureGenerator.kt:135 */
|
2708 3827 | }
|
3828 + | /* RustType.kt:516 */
|
2709 3829 | #[allow(clippy::new_without_default)]
|
3830 + | /* RustType.kt:516 */
|
2710 3831 | #[allow(clippy::too_many_arguments)]
|
3832 + | /* RustType.kt:516 */
|
2711 3833 | #[::pyo3::pymethods]
|
3834 + | /* PythonServerStructureGenerator.kt:88 */
|
2712 3835 | impl JsonUnionsOutput {
|
2713 3836 | #[new]
|
2714 3837 | pub fn new(contents: ::std::option::Option<crate::model::MyUnion>) -> Self {
|
2715 3838 | Self { contents }
|
2716 3839 | }
|
2717 3840 | fn __repr__(&self) -> String {
|
2718 3841 | format!("{self:?}")
|
2719 3842 | }
|
2720 3843 | fn __str__(&self) -> String {
|
2721 3844 | format!("{self:?}")
|
2722 3845 | }
|
2723 3846 | }
|
3847 + | /* PythonServerStructureGenerator.kt:111 */
|
2724 3848 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<JsonUnionsOutput> {
|
2725 3849 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
2726 3850 | ob.extract::<JsonUnionsOutput>().map(Box::new)
|
2727 3851 | }
|
2728 3852 | }
|
2729 3853 |
|
2730 3854 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<JsonUnionsOutput> {
|
2731 3855 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
2732 3856 | (*self).into_py(py)
|
2733 3857 | }
|
2734 3858 | }
|
3859 + | /* ServerCodegenVisitor.kt:370 */
|
2735 3860 | impl JsonUnionsOutput {
|
2736 - | /// Creates a new builder-style object to manufacture [`JsonUnionsOutput`](crate::output::JsonUnionsOutput).
|
3861 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`JsonUnionsOutput`](crate::output::JsonUnionsOutput).
|
3862 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2737 3863 | pub fn builder() -> crate::output::json_unions_output::Builder {
|
3864 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
2738 3865 | crate::output::json_unions_output::Builder::default()
|
3866 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2739 3867 | }
|
3868 + | /* ServerCodegenVisitor.kt:370 */
|
2740 3869 | }
|
2741 3870 |
|
3871 + | /* RustType.kt:516 */
|
2742 3872 | #[::pyo3::pyclass]
|
3873 + | /* PythonServerStructureGenerator.kt:63 */
|
2743 3874 | /// :param doc_valued_map typing.Optional\[typing.Dict\[str, rest_json.types.Document\]\]:
|
2744 3875 | /// :rtype None:
|
3876 + | /* StructureGenerator.kt:197 */
|
2745 3877 | #[allow(missing_docs)] // documentation missing in model
|
3878 + | /* RustType.kt:516 */
|
2746 3879 | #[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
|
2747 - | pub struct DocumentTypeAsMapValueOutput {
|
3880 + | pub /* StructureGenerator.kt:201 */ struct DocumentTypeAsMapValueOutput {
|
3881 + | /* RustType.kt:516 */
|
2748 3882 | #[pyo3(get, set)]
|
3883 + | /* PythonServerStructureGenerator.kt:80 */
|
2749 3884 | /// :type typing.Optional\[typing.Dict\[str, rest_json.types.Document\]\]:
|
3885 + | /* StructureGenerator.kt:231 */
|
2750 3886 | #[allow(missing_docs)] // documentation missing in model
|
2751 3887 | pub doc_valued_map: ::std::option::Option<
|
2752 3888 | ::std::collections::HashMap<
|
2753 3889 | ::std::string::String,
|
2754 3890 | ::aws_smithy_http_server_python::types::Document,
|
2755 3891 | >,
|
2756 3892 | >,
|
3893 + | /* StructureGenerator.kt:201 */
|
2757 3894 | }
|
3895 + | /* StructureGenerator.kt:135 */
|
2758 3896 | impl DocumentTypeAsMapValueOutput {
|
3897 + | /* StructureGenerator.kt:231 */
|
2759 3898 | #[allow(missing_docs)] // documentation missing in model
|
3899 + | /* StructureGenerator.kt:166 */
|
2760 3900 | pub fn doc_valued_map(
|
2761 3901 | &self,
|
2762 3902 | ) -> ::std::option::Option<
|
2763 3903 | &::std::collections::HashMap<
|
2764 3904 | ::std::string::String,
|
2765 3905 | ::aws_smithy_http_server_python::types::Document,
|
2766 3906 | >,
|
2767 3907 | > {
|
3908 + | /* StructureGenerator.kt:170 */
|
2768 3909 | self.doc_valued_map.as_ref()
|
3910 + | /* StructureGenerator.kt:166 */
|
2769 3911 | }
|
3912 + | /* StructureGenerator.kt:135 */
|
2770 3913 | }
|
3914 + | /* RustType.kt:516 */
|
2771 3915 | #[allow(clippy::new_without_default)]
|
3916 + | /* RustType.kt:516 */
|
2772 3917 | #[allow(clippy::too_many_arguments)]
|
3918 + | /* RustType.kt:516 */
|
2773 3919 | #[::pyo3::pymethods]
|
3920 + | /* PythonServerStructureGenerator.kt:88 */
|
2774 3921 | impl DocumentTypeAsMapValueOutput {
|
2775 3922 | #[new]
|
2776 3923 | pub fn new(
|
2777 3924 | doc_valued_map: ::std::option::Option<
|
2778 3925 | ::std::collections::HashMap<
|
2779 3926 | ::std::string::String,
|
2780 3927 | ::aws_smithy_http_server_python::types::Document,
|
2781 3928 | >,
|
2782 3929 | >,
|
2783 3930 | ) -> Self {
|
2784 3931 | Self { doc_valued_map }
|
2785 3932 | }
|
2786 3933 | fn __repr__(&self) -> String {
|
2787 3934 | format!("{self:?}")
|
2788 3935 | }
|
2789 3936 | fn __str__(&self) -> String {
|
2790 3937 | format!("{self:?}")
|
2791 3938 | }
|
2792 3939 | }
|
3940 + | /* PythonServerStructureGenerator.kt:111 */
|
2793 3941 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<DocumentTypeAsMapValueOutput> {
|
2794 3942 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
2795 3943 | ob.extract::<DocumentTypeAsMapValueOutput>().map(Box::new)
|
2796 3944 | }
|
2797 3945 | }
|
2798 3946 |
|
2799 3947 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<DocumentTypeAsMapValueOutput> {
|
2800 3948 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
2801 3949 | (*self).into_py(py)
|
2802 3950 | }
|
2803 3951 | }
|
3952 + | /* ServerCodegenVisitor.kt:370 */
|
2804 3953 | impl DocumentTypeAsMapValueOutput {
|
2805 - | /// Creates a new builder-style object to manufacture [`DocumentTypeAsMapValueOutput`](crate::output::DocumentTypeAsMapValueOutput).
|
3954 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`DocumentTypeAsMapValueOutput`](crate::output::DocumentTypeAsMapValueOutput).
|
3955 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2806 3956 | pub fn builder() -> crate::output::document_type_as_map_value_output::Builder {
|
3957 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
2807 3958 | crate::output::document_type_as_map_value_output::Builder::default()
|
3959 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2808 3960 | }
|
3961 + | /* ServerCodegenVisitor.kt:370 */
|
2809 3962 | }
|
2810 3963 |
|
3964 + | /* RustType.kt:516 */
|
2811 3965 | #[::pyo3::pyclass]
|
3966 + | /* PythonServerStructureGenerator.kt:63 */
|
2812 3967 | /// :param document_value typing.Optional\[rest_json.types.Document\]:
|
2813 3968 | /// :rtype None:
|
3969 + | /* StructureGenerator.kt:197 */
|
2814 3970 | #[allow(missing_docs)] // documentation missing in model
|
3971 + | /* RustType.kt:516 */
|
2815 3972 | #[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
|
2816 - | pub struct DocumentTypeAsPayloadOutput {
|
3973 + | pub /* StructureGenerator.kt:201 */ struct DocumentTypeAsPayloadOutput {
|
3974 + | /* RustType.kt:516 */
|
2817 3975 | #[pyo3(get, set)]
|
3976 + | /* PythonServerStructureGenerator.kt:80 */
|
2818 3977 | /// :type typing.Optional\[rest_json.types.Document\]:
|
3978 + | /* StructureGenerator.kt:231 */
|
2819 3979 | #[allow(missing_docs)] // documentation missing in model
|
2820 3980 | pub document_value: ::std::option::Option<::aws_smithy_http_server_python::types::Document>,
|
3981 + | /* StructureGenerator.kt:201 */
|
2821 3982 | }
|
3983 + | /* StructureGenerator.kt:135 */
|
2822 3984 | impl DocumentTypeAsPayloadOutput {
|
3985 + | /* StructureGenerator.kt:231 */
|
2823 3986 | #[allow(missing_docs)] // documentation missing in model
|
3987 + | /* StructureGenerator.kt:166 */
|
2824 3988 | pub fn document_value(
|
2825 3989 | &self,
|
2826 3990 | ) -> ::std::option::Option<&::aws_smithy_http_server_python::types::Document> {
|
3991 + | /* StructureGenerator.kt:170 */
|
2827 3992 | self.document_value.as_ref()
|
3993 + | /* StructureGenerator.kt:166 */
|
2828 3994 | }
|
3995 + | /* StructureGenerator.kt:135 */
|
2829 3996 | }
|
3997 + | /* RustType.kt:516 */
|
2830 3998 | #[allow(clippy::new_without_default)]
|
3999 + | /* RustType.kt:516 */
|
2831 4000 | #[allow(clippy::too_many_arguments)]
|
4001 + | /* RustType.kt:516 */
|
2832 4002 | #[::pyo3::pymethods]
|
4003 + | /* PythonServerStructureGenerator.kt:88 */
|
2833 4004 | impl DocumentTypeAsPayloadOutput {
|
2834 4005 | #[new]
|
2835 4006 | pub fn new(
|
2836 4007 | document_value: ::std::option::Option<::aws_smithy_http_server_python::types::Document>,
|
2837 4008 | ) -> Self {
|
2838 4009 | Self { document_value }
|
2839 4010 | }
|
2840 4011 | fn __repr__(&self) -> String {
|
2841 4012 | format!("{self:?}")
|
2842 4013 | }
|
2843 4014 | fn __str__(&self) -> String {
|
2844 4015 | format!("{self:?}")
|
2845 4016 | }
|
2846 4017 | }
|
4018 + | /* PythonServerStructureGenerator.kt:111 */
|
2847 4019 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<DocumentTypeAsPayloadOutput> {
|
2848 4020 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
2849 4021 | ob.extract::<DocumentTypeAsPayloadOutput>().map(Box::new)
|
2850 4022 | }
|
2851 4023 | }
|
2852 4024 |
|
2853 4025 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<DocumentTypeAsPayloadOutput> {
|
2854 4026 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
2855 4027 | (*self).into_py(py)
|
2856 4028 | }
|
2857 4029 | }
|
4030 + | /* ServerCodegenVisitor.kt:370 */
|
2858 4031 | impl DocumentTypeAsPayloadOutput {
|
2859 - | /// Creates a new builder-style object to manufacture [`DocumentTypeAsPayloadOutput`](crate::output::DocumentTypeAsPayloadOutput).
|
4032 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`DocumentTypeAsPayloadOutput`](crate::output::DocumentTypeAsPayloadOutput).
|
4033 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2860 4034 | pub fn builder() -> crate::output::document_type_as_payload_output::Builder {
|
4035 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
2861 4036 | crate::output::document_type_as_payload_output::Builder::default()
|
4037 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2862 4038 | }
|
4039 + | /* ServerCodegenVisitor.kt:370 */
|
2863 4040 | }
|
2864 4041 |
|
4042 + | /* RustType.kt:516 */
|
2865 4043 | #[::pyo3::pyclass]
|
4044 + | /* PythonServerStructureGenerator.kt:63 */
|
2866 4045 | /// :param string_value typing.Optional\[str\]:
|
2867 4046 | /// :param document_value typing.Optional\[rest_json.types.Document\]:
|
2868 4047 | /// :rtype None:
|
4048 + | /* StructureGenerator.kt:197 */
|
2869 4049 | #[allow(missing_docs)] // documentation missing in model
|
4050 + | /* RustType.kt:516 */
|
2870 4051 | #[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
|
2871 - | pub struct DocumentTypeOutput {
|
4052 + | pub /* StructureGenerator.kt:201 */ struct DocumentTypeOutput {
|
4053 + | /* RustType.kt:516 */
|
2872 4054 | #[pyo3(get, set)]
|
4055 + | /* PythonServerStructureGenerator.kt:80 */
|
2873 4056 | /// :type typing.Optional\[str\]:
|
4057 + | /* StructureGenerator.kt:231 */
|
2874 4058 | #[allow(missing_docs)] // documentation missing in model
|
2875 4059 | pub string_value: ::std::option::Option<::std::string::String>,
|
4060 + | /* RustType.kt:516 */
|
2876 4061 | #[pyo3(get, set)]
|
4062 + | /* PythonServerStructureGenerator.kt:80 */
|
2877 4063 | /// :type typing.Optional\[rest_json.types.Document\]:
|
4064 + | /* StructureGenerator.kt:231 */
|
2878 4065 | #[allow(missing_docs)] // documentation missing in model
|
2879 4066 | pub document_value: ::std::option::Option<::aws_smithy_http_server_python::types::Document>,
|
4067 + | /* StructureGenerator.kt:201 */
|
2880 4068 | }
|
4069 + | /* StructureGenerator.kt:135 */
|
2881 4070 | impl DocumentTypeOutput {
|
4071 + | /* StructureGenerator.kt:231 */
|
2882 4072 | #[allow(missing_docs)] // documentation missing in model
|
4073 + | /* StructureGenerator.kt:166 */
|
2883 4074 | pub fn string_value(&self) -> ::std::option::Option<&str> {
|
4075 + | /* StructureGenerator.kt:169 */
|
2884 4076 | self.string_value.as_deref()
|
4077 + | /* StructureGenerator.kt:166 */
|
2885 4078 | }
|
4079 + | /* StructureGenerator.kt:231 */
|
2886 4080 | #[allow(missing_docs)] // documentation missing in model
|
4081 + | /* StructureGenerator.kt:166 */
|
2887 4082 | pub fn document_value(
|
2888 4083 | &self,
|
2889 4084 | ) -> ::std::option::Option<&::aws_smithy_http_server_python::types::Document> {
|
4085 + | /* StructureGenerator.kt:170 */
|
2890 4086 | self.document_value.as_ref()
|
4087 + | /* StructureGenerator.kt:166 */
|
2891 4088 | }
|
4089 + | /* StructureGenerator.kt:135 */
|
2892 4090 | }
|
4091 + | /* RustType.kt:516 */
|
2893 4092 | #[allow(clippy::new_without_default)]
|
4093 + | /* RustType.kt:516 */
|
2894 4094 | #[allow(clippy::too_many_arguments)]
|
4095 + | /* RustType.kt:516 */
|
2895 4096 | #[::pyo3::pymethods]
|
4097 + | /* PythonServerStructureGenerator.kt:88 */
|
2896 4098 | impl DocumentTypeOutput {
|
2897 4099 | #[new]
|
2898 4100 | pub fn new(
|
2899 4101 | string_value: ::std::option::Option<::std::string::String>,
|
2900 4102 | document_value: ::std::option::Option<::aws_smithy_http_server_python::types::Document>,
|
2901 4103 | ) -> Self {
|
2902 4104 | Self {
|
2903 4105 | string_value,
|
2904 4106 | document_value,
|
2905 4107 | }
|
2906 4108 | }
|
2907 4109 | fn __repr__(&self) -> String {
|
2908 4110 | format!("{self:?}")
|
2909 4111 | }
|
2910 4112 | fn __str__(&self) -> String {
|
2911 4113 | format!("{self:?}")
|
2912 4114 | }
|
2913 4115 | }
|
4116 + | /* PythonServerStructureGenerator.kt:111 */
|
2914 4117 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<DocumentTypeOutput> {
|
2915 4118 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
2916 4119 | ob.extract::<DocumentTypeOutput>().map(Box::new)
|
2917 4120 | }
|
2918 4121 | }
|
2919 4122 |
|
2920 4123 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<DocumentTypeOutput> {
|
2921 4124 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
2922 4125 | (*self).into_py(py)
|
2923 4126 | }
|
2924 4127 | }
|
4128 + | /* ServerCodegenVisitor.kt:370 */
|
2925 4129 | impl DocumentTypeOutput {
|
2926 - | /// Creates a new builder-style object to manufacture [`DocumentTypeOutput`](crate::output::DocumentTypeOutput).
|
4130 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`DocumentTypeOutput`](crate::output::DocumentTypeOutput).
|
4131 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2927 4132 | pub fn builder() -> crate::output::document_type_output::Builder {
|
4133 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
2928 4134 | crate::output::document_type_output::Builder::default()
|
4135 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2929 4136 | }
|
4137 + | /* ServerCodegenVisitor.kt:370 */
|
2930 4138 | }
|
2931 4139 |
|
4140 + | /* RustType.kt:516 */
|
2932 4141 | #[::pyo3::pyclass]
|
4142 + | /* PythonServerStructureGenerator.kt:63 */
|
2933 4143 | /// :param data typing.Optional\[rest_json.types.Blob\]:
|
2934 4144 | /// :rtype None:
|
4145 + | /* StructureGenerator.kt:197 */
|
2935 4146 | #[allow(missing_docs)] // documentation missing in model
|
4147 + | /* RustType.kt:516 */
|
2936 4148 | #[derive(
|
2937 4149 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
2938 4150 | )]
|
2939 - | pub struct JsonBlobsOutput {
|
4151 + | pub /* StructureGenerator.kt:201 */ struct JsonBlobsOutput {
|
4152 + | /* RustType.kt:516 */
|
2940 4153 | #[pyo3(get, set)]
|
4154 + | /* PythonServerStructureGenerator.kt:80 */
|
2941 4155 | /// :type typing.Optional\[rest_json.types.Blob\]:
|
4156 + | /* StructureGenerator.kt:231 */
|
2942 4157 | #[allow(missing_docs)] // documentation missing in model
|
2943 4158 | pub data: ::std::option::Option<::aws_smithy_http_server_python::types::Blob>,
|
4159 + | /* StructureGenerator.kt:201 */
|
2944 4160 | }
|
4161 + | /* StructureGenerator.kt:135 */
|
2945 4162 | impl JsonBlobsOutput {
|
4163 + | /* StructureGenerator.kt:231 */
|
2946 4164 | #[allow(missing_docs)] // documentation missing in model
|
4165 + | /* StructureGenerator.kt:166 */
|
2947 4166 | pub fn data(&self) -> ::std::option::Option<&::aws_smithy_http_server_python::types::Blob> {
|
4167 + | /* StructureGenerator.kt:170 */
|
2948 4168 | self.data.as_ref()
|
4169 + | /* StructureGenerator.kt:166 */
|
2949 4170 | }
|
4171 + | /* StructureGenerator.kt:135 */
|
2950 4172 | }
|
4173 + | /* RustType.kt:516 */
|
2951 4174 | #[allow(clippy::new_without_default)]
|
4175 + | /* RustType.kt:516 */
|
2952 4176 | #[allow(clippy::too_many_arguments)]
|
4177 + | /* RustType.kt:516 */
|
2953 4178 | #[::pyo3::pymethods]
|
4179 + | /* PythonServerStructureGenerator.kt:88 */
|
2954 4180 | impl JsonBlobsOutput {
|
2955 4181 | #[new]
|
2956 4182 | pub fn new(data: ::std::option::Option<::aws_smithy_http_server_python::types::Blob>) -> Self {
|
2957 4183 | Self { data }
|
2958 4184 | }
|
2959 4185 | fn __repr__(&self) -> String {
|
2960 4186 | format!("{self:?}")
|
2961 4187 | }
|
2962 4188 | fn __str__(&self) -> String {
|
2963 4189 | format!("{self:?}")
|
2964 4190 | }
|
2965 4191 | }
|
4192 + | /* PythonServerStructureGenerator.kt:111 */
|
2966 4193 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<JsonBlobsOutput> {
|
2967 4194 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
2968 4195 | ob.extract::<JsonBlobsOutput>().map(Box::new)
|
2969 4196 | }
|
2970 4197 | }
|
2971 4198 |
|
2972 4199 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<JsonBlobsOutput> {
|
2973 4200 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
2974 4201 | (*self).into_py(py)
|
2975 4202 | }
|
2976 4203 | }
|
4204 + | /* ServerCodegenVisitor.kt:370 */
|
2977 4205 | impl JsonBlobsOutput {
|
2978 - | /// Creates a new builder-style object to manufacture [`JsonBlobsOutput`](crate::output::JsonBlobsOutput).
|
4206 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`JsonBlobsOutput`](crate::output::JsonBlobsOutput).
|
4207 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2979 4208 | pub fn builder() -> crate::output::json_blobs_output::Builder {
|
4209 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
2980 4210 | crate::output::json_blobs_output::Builder::default()
|
4211 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
2981 4212 | }
|
4213 + | /* ServerCodegenVisitor.kt:370 */
|
2982 4214 | }
|
2983 4215 |
|
4216 + | /* RustType.kt:516 */
|
2984 4217 | #[::pyo3::pyclass]
|
4218 + | /* PythonServerStructureGenerator.kt:63 */
|
2985 4219 | /// :param sparse_struct_map typing.Optional\[typing.Dict\[str, typing.Optional\[rest_json.model.GreetingStruct\]\]\]:
|
2986 4220 | /// :param sparse_number_map typing.Optional\[typing.Dict\[str, typing.Optional\[int\]\]\]:
|
2987 4221 | /// :param sparse_boolean_map typing.Optional\[typing.Dict\[str, typing.Optional\[bool\]\]\]:
|
2988 4222 | /// :param sparse_string_map typing.Optional\[typing.Dict\[str, typing.Optional\[str\]\]\]:
|
2989 4223 | /// :param sparse_set_map typing.Optional\[typing.Dict\[str, typing.Optional\[typing.List\[str\]\]\]\]:
|
2990 4224 | /// :rtype None:
|
4225 + | /* StructureGenerator.kt:197 */
|
2991 4226 | #[allow(missing_docs)] // documentation missing in model
|
4227 + | /* RustType.kt:516 */
|
2992 4228 | #[derive(::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug)]
|
2993 - | pub struct SparseJsonMapsOutput {
|
4229 + | pub /* StructureGenerator.kt:201 */ struct SparseJsonMapsOutput {
|
4230 + | /* RustType.kt:516 */
|
2994 4231 | #[pyo3(get, set)]
|
4232 + | /* PythonServerStructureGenerator.kt:80 */
|
2995 4233 | /// :type typing.Optional\[typing.Dict\[str, typing.Optional\[rest_json.model.GreetingStruct\]\]\]:
|
4234 + | /* StructureGenerator.kt:231 */
|
2996 4235 | #[allow(missing_docs)] // documentation missing in model
|
2997 4236 | pub sparse_struct_map: ::std::option::Option<
|
2998 4237 | ::std::collections::HashMap<
|
2999 4238 | ::std::string::String,
|
3000 4239 | ::std::option::Option<crate::model::GreetingStruct>,
|
3001 4240 | >,
|
3002 4241 | >,
|
4242 + | /* RustType.kt:516 */
|
3003 4243 | #[pyo3(get, set)]
|
4244 + | /* PythonServerStructureGenerator.kt:80 */
|
3004 4245 | /// :type typing.Optional\[typing.Dict\[str, typing.Optional\[int\]\]\]:
|
4246 + | /* StructureGenerator.kt:231 */
|
3005 4247 | #[allow(missing_docs)] // documentation missing in model
|
3006 4248 | pub sparse_number_map: ::std::option::Option<
|
3007 4249 | ::std::collections::HashMap<::std::string::String, ::std::option::Option<i32>>,
|
3008 4250 | >,
|
4251 + | /* RustType.kt:516 */
|
3009 4252 | #[pyo3(get, set)]
|
4253 + | /* PythonServerStructureGenerator.kt:80 */
|
3010 4254 | /// :type typing.Optional\[typing.Dict\[str, typing.Optional\[bool\]\]\]:
|
4255 + | /* StructureGenerator.kt:231 */
|
3011 4256 | #[allow(missing_docs)] // documentation missing in model
|
3012 4257 | pub sparse_boolean_map: ::std::option::Option<
|
3013 4258 | ::std::collections::HashMap<::std::string::String, ::std::option::Option<bool>>,
|
3014 4259 | >,
|
4260 + | /* RustType.kt:516 */
|
3015 4261 | #[pyo3(get, set)]
|
4262 + | /* PythonServerStructureGenerator.kt:80 */
|
3016 4263 | /// :type typing.Optional\[typing.Dict\[str, typing.Optional\[str\]\]\]:
|
4264 + | /* StructureGenerator.kt:231 */
|
3017 4265 | #[allow(missing_docs)] // documentation missing in model
|
3018 4266 | pub sparse_string_map: ::std::option::Option<
|
3019 4267 | ::std::collections::HashMap<
|
3020 4268 | ::std::string::String,
|
3021 4269 | ::std::option::Option<::std::string::String>,
|
3022 4270 | >,
|
3023 4271 | >,
|
4272 + | /* RustType.kt:516 */
|
3024 4273 | #[pyo3(get, set)]
|
4274 + | /* PythonServerStructureGenerator.kt:80 */
|
3025 4275 | /// :type typing.Optional\[typing.Dict\[str, typing.Optional\[typing.List\[str\]\]\]\]:
|
4276 + | /* StructureGenerator.kt:231 */
|
3026 4277 | #[allow(missing_docs)] // documentation missing in model
|
3027 4278 | pub sparse_set_map: ::std::option::Option<
|
3028 4279 | ::std::collections::HashMap<
|
3029 4280 | ::std::string::String,
|
3030 4281 | ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
3031 4282 | >,
|
3032 4283 | >,
|
4284 + | /* StructureGenerator.kt:201 */
|
3033 4285 | }
|
4286 + | /* StructureGenerator.kt:135 */
|
3034 4287 | impl SparseJsonMapsOutput {
|
4288 + | /* StructureGenerator.kt:231 */
|
3035 4289 | #[allow(missing_docs)] // documentation missing in model
|
4290 + | /* StructureGenerator.kt:166 */
|
3036 4291 | pub fn sparse_struct_map(
|
3037 4292 | &self,
|
3038 4293 | ) -> ::std::option::Option<
|
3039 4294 | &::std::collections::HashMap<
|
3040 4295 | ::std::string::String,
|
3041 4296 | ::std::option::Option<crate::model::GreetingStruct>,
|
3042 4297 | >,
|
3043 4298 | > {
|
4299 + | /* StructureGenerator.kt:170 */
|
3044 4300 | self.sparse_struct_map.as_ref()
|
4301 + | /* StructureGenerator.kt:166 */
|
3045 4302 | }
|
4303 + | /* StructureGenerator.kt:231 */
|
3046 4304 | #[allow(missing_docs)] // documentation missing in model
|
4305 + | /* StructureGenerator.kt:166 */
|
3047 4306 | pub fn sparse_number_map(
|
3048 4307 | &self,
|
3049 4308 | ) -> ::std::option::Option<
|
3050 4309 | &::std::collections::HashMap<::std::string::String, ::std::option::Option<i32>>,
|
3051 4310 | > {
|
4311 + | /* StructureGenerator.kt:170 */
|
3052 4312 | self.sparse_number_map.as_ref()
|
4313 + | /* StructureGenerator.kt:166 */
|
3053 4314 | }
|
4315 + | /* StructureGenerator.kt:231 */
|
3054 4316 | #[allow(missing_docs)] // documentation missing in model
|
4317 + | /* StructureGenerator.kt:166 */
|
3055 4318 | pub fn sparse_boolean_map(
|
3056 4319 | &self,
|
3057 4320 | ) -> ::std::option::Option<
|
3058 4321 | &::std::collections::HashMap<::std::string::String, ::std::option::Option<bool>>,
|
3059 4322 | > {
|
4323 + | /* StructureGenerator.kt:170 */
|
3060 4324 | self.sparse_boolean_map.as_ref()
|
4325 + | /* StructureGenerator.kt:166 */
|
3061 4326 | }
|
4327 + | /* StructureGenerator.kt:231 */
|
3062 4328 | #[allow(missing_docs)] // documentation missing in model
|
4329 + | /* StructureGenerator.kt:166 */
|
3063 4330 | pub fn sparse_string_map(
|
3064 4331 | &self,
|
3065 4332 | ) -> ::std::option::Option<
|
3066 4333 | &::std::collections::HashMap<
|
3067 4334 | ::std::string::String,
|
3068 4335 | ::std::option::Option<::std::string::String>,
|
3069 4336 | >,
|
3070 4337 | > {
|
4338 + | /* StructureGenerator.kt:170 */
|
3071 4339 | self.sparse_string_map.as_ref()
|
4340 + | /* StructureGenerator.kt:166 */
|
3072 4341 | }
|
4342 + | /* StructureGenerator.kt:231 */
|
3073 4343 | #[allow(missing_docs)] // documentation missing in model
|
4344 + | /* StructureGenerator.kt:166 */
|
3074 4345 | pub fn sparse_set_map(
|
3075 4346 | &self,
|
3076 4347 | ) -> ::std::option::Option<
|
3077 4348 | &::std::collections::HashMap<
|
3078 4349 | ::std::string::String,
|
3079 4350 | ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
3080 4351 | >,
|
3081 4352 | > {
|
4353 + | /* StructureGenerator.kt:170 */
|
3082 4354 | self.sparse_set_map.as_ref()
|
4355 + | /* StructureGenerator.kt:166 */
|
3083 4356 | }
|
4357 + | /* StructureGenerator.kt:135 */
|
3084 4358 | }
|
4359 + | /* RustType.kt:516 */
|
3085 4360 | #[allow(clippy::new_without_default)]
|
4361 + | /* RustType.kt:516 */
|
3086 4362 | #[allow(clippy::too_many_arguments)]
|
4363 + | /* RustType.kt:516 */
|
3087 4364 | #[::pyo3::pymethods]
|
4365 + | /* PythonServerStructureGenerator.kt:88 */
|
3088 4366 | impl SparseJsonMapsOutput {
|
3089 4367 | #[new]
|
3090 4368 | pub fn new(
|
3091 4369 | sparse_struct_map: ::std::option::Option<
|
3092 4370 | ::std::collections::HashMap<
|
3093 4371 | ::std::string::String,
|
3094 4372 | ::std::option::Option<crate::model::GreetingStruct>,
|
3095 4373 | >,
|
3096 4374 | >,
|
3097 4375 | sparse_number_map: ::std::option::Option<
|
3098 4376 | ::std::collections::HashMap<::std::string::String, ::std::option::Option<i32>>,
|
3099 4377 | >,
|
3100 4378 | sparse_boolean_map: ::std::option::Option<
|
3101 4379 | ::std::collections::HashMap<::std::string::String, ::std::option::Option<bool>>,
|
3102 4380 | >,
|
3103 4381 | sparse_string_map: ::std::option::Option<
|
3104 4382 | ::std::collections::HashMap<
|
3105 4383 | ::std::string::String,
|
3106 4384 | ::std::option::Option<::std::string::String>,
|
3107 4385 | >,
|
3108 4386 | >,
|
3109 4387 | sparse_set_map: ::std::option::Option<
|
3110 4388 | ::std::collections::HashMap<
|
3111 4389 | ::std::string::String,
|
3112 4390 | ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
3113 4391 | >,
|
3114 4392 | >,
|
3115 4393 | ) -> Self {
|
3116 4394 | Self {
|
3117 4395 | sparse_struct_map,
|
3118 4396 | sparse_number_map,
|
3119 4397 | sparse_boolean_map,
|
3120 4398 | sparse_string_map,
|
3121 4399 | sparse_set_map,
|
3122 4400 | }
|
3123 4401 | }
|
3124 4402 | fn __repr__(&self) -> String {
|
3125 4403 | format!("{self:?}")
|
3126 4404 | }
|
3127 4405 | fn __str__(&self) -> String {
|
3128 4406 | format!("{self:?}")
|
3129 4407 | }
|
3130 4408 | }
|
4409 + | /* PythonServerStructureGenerator.kt:111 */
|
3131 4410 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<SparseJsonMapsOutput> {
|
3132 4411 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
3133 4412 | ob.extract::<SparseJsonMapsOutput>().map(Box::new)
|
3134 4413 | }
|
3135 4414 | }
|
3136 4415 |
|
3137 4416 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<SparseJsonMapsOutput> {
|
3138 4417 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
3139 4418 | (*self).into_py(py)
|
3140 4419 | }
|
3141 4420 | }
|
4421 + | /* ServerCodegenVisitor.kt:370 */
|
3142 4422 | impl SparseJsonMapsOutput {
|
3143 - | /// Creates a new builder-style object to manufacture [`SparseJsonMapsOutput`](crate::output::SparseJsonMapsOutput).
|
4423 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`SparseJsonMapsOutput`](crate::output::SparseJsonMapsOutput).
|
4424 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
3144 4425 | pub fn builder() -> crate::output::sparse_json_maps_output::Builder {
|
4426 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
3145 4427 | crate::output::sparse_json_maps_output::Builder::default()
|
4428 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
3146 4429 | }
|
4430 + | /* ServerCodegenVisitor.kt:370 */
|
3147 4431 | }
|
3148 4432 |
|
4433 + | /* RustType.kt:516 */
|
3149 4434 | #[::pyo3::pyclass]
|
4435 + | /* PythonServerStructureGenerator.kt:63 */
|
3150 4436 | /// :param dense_struct_map typing.Optional\[typing.Dict\[str, rest_json.model.GreetingStruct\]\]:
|
3151 4437 | /// :param dense_number_map typing.Optional\[typing.Dict\[str, int\]\]:
|
3152 4438 | /// :param dense_boolean_map typing.Optional\[typing.Dict\[str, bool\]\]:
|
3153 4439 | /// :param dense_string_map typing.Optional\[typing.Dict\[str, str\]\]:
|
3154 4440 | /// :param dense_set_map typing.Optional\[typing.Dict\[str, typing.List\[str\]\]\]:
|
3155 4441 | /// :rtype None:
|
4442 + | /* StructureGenerator.kt:197 */
|
3156 4443 | #[allow(missing_docs)] // documentation missing in model
|
4444 + | /* RustType.kt:516 */
|
3157 4445 | #[derive(::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug)]
|
3158 - | pub struct JsonMapsOutput {
|
4446 + | pub /* StructureGenerator.kt:201 */ struct JsonMapsOutput {
|
4447 + | /* RustType.kt:516 */
|
3159 4448 | #[pyo3(get, set)]
|
4449 + | /* PythonServerStructureGenerator.kt:80 */
|
3160 4450 | /// :type typing.Optional\[typing.Dict\[str, rest_json.model.GreetingStruct\]\]:
|
4451 + | /* StructureGenerator.kt:231 */
|
3161 4452 | #[allow(missing_docs)] // documentation missing in model
|
3162 4453 | pub dense_struct_map: ::std::option::Option<
|
3163 4454 | ::std::collections::HashMap<::std::string::String, crate::model::GreetingStruct>,
|
3164 4455 | >,
|
4456 + | /* RustType.kt:516 */
|
3165 4457 | #[pyo3(get, set)]
|
4458 + | /* PythonServerStructureGenerator.kt:80 */
|
3166 4459 | /// :type typing.Optional\[typing.Dict\[str, int\]\]:
|
4460 + | /* StructureGenerator.kt:231 */
|
3167 4461 | #[allow(missing_docs)] // documentation missing in model
|
3168 4462 | pub dense_number_map:
|
3169 4463 | ::std::option::Option<::std::collections::HashMap<::std::string::String, i32>>,
|
4464 + | /* RustType.kt:516 */
|
3170 4465 | #[pyo3(get, set)]
|
4466 + | /* PythonServerStructureGenerator.kt:80 */
|
3171 4467 | /// :type typing.Optional\[typing.Dict\[str, bool\]\]:
|
4468 + | /* StructureGenerator.kt:231 */
|
3172 4469 | #[allow(missing_docs)] // documentation missing in model
|
3173 4470 | pub dense_boolean_map:
|
3174 4471 | ::std::option::Option<::std::collections::HashMap<::std::string::String, bool>>,
|
4472 + | /* RustType.kt:516 */
|
3175 4473 | #[pyo3(get, set)]
|
4474 + | /* PythonServerStructureGenerator.kt:80 */
|
3176 4475 | /// :type typing.Optional\[typing.Dict\[str, str\]\]:
|
4476 + | /* StructureGenerator.kt:231 */
|
3177 4477 | #[allow(missing_docs)] // documentation missing in model
|
3178 4478 | pub dense_string_map: ::std::option::Option<
|
3179 4479 | ::std::collections::HashMap<::std::string::String, ::std::string::String>,
|
3180 4480 | >,
|
4481 + | /* RustType.kt:516 */
|
3181 4482 | #[pyo3(get, set)]
|
4483 + | /* PythonServerStructureGenerator.kt:80 */
|
3182 4484 | /// :type typing.Optional\[typing.Dict\[str, typing.List\[str\]\]\]:
|
4485 + | /* StructureGenerator.kt:231 */
|
3183 4486 | #[allow(missing_docs)] // documentation missing in model
|
3184 4487 | pub dense_set_map: ::std::option::Option<
|
3185 4488 | ::std::collections::HashMap<::std::string::String, ::std::vec::Vec<::std::string::String>>,
|
3186 4489 | >,
|
4490 + | /* StructureGenerator.kt:201 */
|
3187 4491 | }
|
4492 + | /* StructureGenerator.kt:135 */
|
3188 4493 | impl JsonMapsOutput {
|
4494 + | /* StructureGenerator.kt:231 */
|
3189 4495 | #[allow(missing_docs)] // documentation missing in model
|
4496 + | /* StructureGenerator.kt:166 */
|
3190 4497 | pub fn dense_struct_map(
|
3191 4498 | &self,
|
3192 4499 | ) -> ::std::option::Option<
|
3193 4500 | &::std::collections::HashMap<::std::string::String, crate::model::GreetingStruct>,
|
3194 4501 | > {
|
4502 + | /* StructureGenerator.kt:170 */
|
3195 4503 | self.dense_struct_map.as_ref()
|
4504 + | /* StructureGenerator.kt:166 */
|
3196 4505 | }
|
4506 + | /* StructureGenerator.kt:231 */
|
3197 4507 | #[allow(missing_docs)] // documentation missing in model
|
4508 + | /* StructureGenerator.kt:166 */
|
3198 4509 | pub fn dense_number_map(
|
3199 4510 | &self,
|
3200 4511 | ) -> ::std::option::Option<&::std::collections::HashMap<::std::string::String, i32>> {
|
4512 + | /* StructureGenerator.kt:170 */
|
3201 4513 | self.dense_number_map.as_ref()
|
4514 + | /* StructureGenerator.kt:166 */
|
3202 4515 | }
|
4516 + | /* StructureGenerator.kt:231 */
|
3203 4517 | #[allow(missing_docs)] // documentation missing in model
|
4518 + | /* StructureGenerator.kt:166 */
|
3204 4519 | pub fn dense_boolean_map(
|
3205 4520 | &self,
|
3206 4521 | ) -> ::std::option::Option<&::std::collections::HashMap<::std::string::String, bool>> {
|
4522 + | /* StructureGenerator.kt:170 */
|
3207 4523 | self.dense_boolean_map.as_ref()
|
4524 + | /* StructureGenerator.kt:166 */
|
3208 4525 | }
|
4526 + | /* StructureGenerator.kt:231 */
|
3209 4527 | #[allow(missing_docs)] // documentation missing in model
|
4528 + | /* StructureGenerator.kt:166 */
|
3210 4529 | pub fn dense_string_map(
|
3211 4530 | &self,
|
3212 4531 | ) -> ::std::option::Option<
|
3213 4532 | &::std::collections::HashMap<::std::string::String, ::std::string::String>,
|
3214 4533 | > {
|
4534 + | /* StructureGenerator.kt:170 */
|
3215 4535 | self.dense_string_map.as_ref()
|
4536 + | /* StructureGenerator.kt:166 */
|
3216 4537 | }
|
4538 + | /* StructureGenerator.kt:231 */
|
3217 4539 | #[allow(missing_docs)] // documentation missing in model
|
4540 + | /* StructureGenerator.kt:166 */
|
3218 4541 | pub fn dense_set_map(
|
3219 4542 | &self,
|
3220 4543 | ) -> ::std::option::Option<
|
3221 4544 | &::std::collections::HashMap<::std::string::String, ::std::vec::Vec<::std::string::String>>,
|
3222 4545 | > {
|
4546 + | /* StructureGenerator.kt:170 */
|
3223 4547 | self.dense_set_map.as_ref()
|
4548 + | /* StructureGenerator.kt:166 */
|
3224 4549 | }
|
4550 + | /* StructureGenerator.kt:135 */
|
3225 4551 | }
|
4552 + | /* RustType.kt:516 */
|
3226 4553 | #[allow(clippy::new_without_default)]
|
4554 + | /* RustType.kt:516 */
|
3227 4555 | #[allow(clippy::too_many_arguments)]
|
4556 + | /* RustType.kt:516 */
|
3228 4557 | #[::pyo3::pymethods]
|
4558 + | /* PythonServerStructureGenerator.kt:88 */
|
3229 4559 | impl JsonMapsOutput {
|
3230 4560 | #[new]
|
3231 4561 | pub fn new(
|
3232 4562 | dense_struct_map: ::std::option::Option<
|
3233 4563 | ::std::collections::HashMap<::std::string::String, crate::model::GreetingStruct>,
|
3234 4564 | >,
|
3235 4565 | dense_number_map: ::std::option::Option<
|
3236 4566 | ::std::collections::HashMap<::std::string::String, i32>,
|
3237 4567 | >,
|
3238 4568 | dense_boolean_map: ::std::option::Option<
|
3239 4569 | ::std::collections::HashMap<::std::string::String, bool>,
|
3240 4570 | >,
|
3241 4571 | dense_string_map: ::std::option::Option<
|
3242 4572 | ::std::collections::HashMap<::std::string::String, ::std::string::String>,
|
3243 4573 | >,
|
3244 4574 | dense_set_map: ::std::option::Option<
|
3245 4575 | ::std::collections::HashMap<
|
3246 4576 | ::std::string::String,
|
3247 4577 | ::std::vec::Vec<::std::string::String>,
|
3248 4578 | >,
|
3249 4579 | >,
|
3250 4580 | ) -> Self {
|
3251 4581 | Self {
|
3252 4582 | dense_struct_map,
|
3253 4583 | dense_number_map,
|
3254 4584 | dense_boolean_map,
|
3255 4585 | dense_string_map,
|
3256 4586 | dense_set_map,
|
3257 4587 | }
|
3258 4588 | }
|
3259 4589 | fn __repr__(&self) -> String {
|
3260 4590 | format!("{self:?}")
|
3261 4591 | }
|
3262 4592 | fn __str__(&self) -> String {
|
3263 4593 | format!("{self:?}")
|
3264 4594 | }
|
3265 4595 | }
|
4596 + | /* PythonServerStructureGenerator.kt:111 */
|
3266 4597 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<JsonMapsOutput> {
|
3267 4598 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
3268 4599 | ob.extract::<JsonMapsOutput>().map(Box::new)
|
3269 4600 | }
|
3270 4601 | }
|
3271 4602 |
|
3272 4603 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<JsonMapsOutput> {
|
3273 4604 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
3274 4605 | (*self).into_py(py)
|
3275 4606 | }
|
3276 4607 | }
|
4608 + | /* ServerCodegenVisitor.kt:370 */
|
3277 4609 | impl JsonMapsOutput {
|
3278 - | /// Creates a new builder-style object to manufacture [`JsonMapsOutput`](crate::output::JsonMapsOutput).
|
4610 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`JsonMapsOutput`](crate::output::JsonMapsOutput).
|
4611 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
3279 4612 | pub fn builder() -> crate::output::json_maps_output::Builder {
|
4613 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
3280 4614 | crate::output::json_maps_output::Builder::default()
|
4615 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
3281 4616 | }
|
4617 + | /* ServerCodegenVisitor.kt:370 */
|
3282 4618 | }
|
3283 4619 |
|
4620 + | /* RustType.kt:516 */
|
3284 4621 | #[::pyo3::pyclass]
|
4622 + | /* PythonServerStructureGenerator.kt:63 */
|
3285 4623 | /// :param sparse_string_list typing.Optional\[typing.List\[typing.Optional\[str\]\]\]:
|
3286 4624 | /// :param sparse_short_list typing.Optional\[typing.List\[typing.Optional\[int\]\]\]:
|
3287 4625 | /// :rtype None:
|
4626 + | /* StructureGenerator.kt:197 */
|
3288 4627 | #[allow(missing_docs)] // documentation missing in model
|
4628 + | /* RustType.kt:516 */
|
3289 4629 | #[derive(
|
3290 4630 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
3291 4631 | )]
|
3292 - | pub struct SparseJsonListsOutput {
|
4632 + | pub /* StructureGenerator.kt:201 */ struct SparseJsonListsOutput {
|
4633 + | /* RustType.kt:516 */
|
3293 4634 | #[pyo3(get, set)]
|
4635 + | /* PythonServerStructureGenerator.kt:80 */
|
3294 4636 | /// :type typing.Optional\[typing.List\[typing.Optional\[str\]\]\]:
|
4637 + | /* StructureGenerator.kt:231 */
|
3295 4638 | #[allow(missing_docs)] // documentation missing in model
|
3296 4639 | pub sparse_string_list:
|
3297 4640 | ::std::option::Option<::std::vec::Vec<::std::option::Option<::std::string::String>>>,
|
4641 + | /* RustType.kt:516 */
|
3298 4642 | #[pyo3(get, set)]
|
4643 + | /* PythonServerStructureGenerator.kt:80 */
|
3299 4644 | /// :type typing.Optional\[typing.List\[typing.Optional\[int\]\]\]:
|
4645 + | /* StructureGenerator.kt:231 */
|
3300 4646 | #[allow(missing_docs)] // documentation missing in model
|
3301 4647 | pub sparse_short_list: ::std::option::Option<::std::vec::Vec<::std::option::Option<i16>>>,
|
4648 + | /* StructureGenerator.kt:201 */
|
3302 4649 | }
|
4650 + | /* StructureGenerator.kt:135 */
|
3303 4651 | impl SparseJsonListsOutput {
|
4652 + | /* StructureGenerator.kt:231 */
|
3304 4653 | #[allow(missing_docs)] // documentation missing in model
|
4654 + | /* StructureGenerator.kt:166 */
|
3305 4655 | pub fn sparse_string_list(
|
3306 4656 | &self,
|
3307 4657 | ) -> ::std::option::Option<&[::std::option::Option<::std::string::String>]> {
|
4658 + | /* StructureGenerator.kt:169 */
|
3308 4659 | self.sparse_string_list.as_deref()
|
4660 + | /* StructureGenerator.kt:166 */
|
3309 4661 | }
|
4662 + | /* StructureGenerator.kt:231 */
|
3310 4663 | #[allow(missing_docs)] // documentation missing in model
|
4664 + | /* StructureGenerator.kt:166 */
|
3311 4665 | pub fn sparse_short_list(&self) -> ::std::option::Option<&[::std::option::Option<i16>]> {
|
4666 + | /* StructureGenerator.kt:169 */
|
3312 4667 | self.sparse_short_list.as_deref()
|
4668 + | /* StructureGenerator.kt:166 */
|
3313 4669 | }
|
4670 + | /* StructureGenerator.kt:135 */
|
3314 4671 | }
|
4672 + | /* RustType.kt:516 */
|
3315 4673 | #[allow(clippy::new_without_default)]
|
4674 + | /* RustType.kt:516 */
|
3316 4675 | #[allow(clippy::too_many_arguments)]
|
4676 + | /* RustType.kt:516 */
|
3317 4677 | #[::pyo3::pymethods]
|
4678 + | /* PythonServerStructureGenerator.kt:88 */
|
3318 4679 | impl SparseJsonListsOutput {
|
3319 4680 | #[new]
|
3320 4681 | pub fn new(
|
3321 4682 | sparse_string_list: ::std::option::Option<
|
3322 4683 | ::std::vec::Vec<::std::option::Option<::std::string::String>>,
|
3323 4684 | >,
|
3324 4685 | sparse_short_list: ::std::option::Option<::std::vec::Vec<::std::option::Option<i16>>>,
|
3325 4686 | ) -> Self {
|
3326 4687 | Self {
|
3327 4688 | sparse_string_list,
|
3328 4689 | sparse_short_list,
|
3329 4690 | }
|
3330 4691 | }
|
3331 4692 | fn __repr__(&self) -> String {
|
3332 4693 | format!("{self:?}")
|
3333 4694 | }
|
3334 4695 | fn __str__(&self) -> String {
|
3335 4696 | format!("{self:?}")
|
3336 4697 | }
|
3337 4698 | }
|
4699 + | /* PythonServerStructureGenerator.kt:111 */
|
3338 4700 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<SparseJsonListsOutput> {
|
3339 4701 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
3340 4702 | ob.extract::<SparseJsonListsOutput>().map(Box::new)
|
3341 4703 | }
|
3342 4704 | }
|
3343 4705 |
|
3344 4706 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<SparseJsonListsOutput> {
|
3345 4707 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
3346 4708 | (*self).into_py(py)
|
3347 4709 | }
|
3348 4710 | }
|
4711 + | /* ServerCodegenVisitor.kt:370 */
|
3349 4712 | impl SparseJsonListsOutput {
|
3350 - | /// Creates a new builder-style object to manufacture [`SparseJsonListsOutput`](crate::output::SparseJsonListsOutput).
|
4713 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`SparseJsonListsOutput`](crate::output::SparseJsonListsOutput).
|
4714 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
3351 4715 | pub fn builder() -> crate::output::sparse_json_lists_output::Builder {
|
4716 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
3352 4717 | crate::output::sparse_json_lists_output::Builder::default()
|
4718 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
3353 4719 | }
|
4720 + | /* ServerCodegenVisitor.kt:370 */
|
3354 4721 | }
|
3355 4722 |
|
4723 + | /* RustType.kt:516 */
|
3356 4724 | #[::pyo3::pyclass]
|
4725 + | /* PythonServerStructureGenerator.kt:63 */
|
3357 4726 | /// :param string_list typing.Optional\[typing.List\[str\]\]:
|
3358 4727 | /// :param string_set typing.Optional\[typing.List\[str\]\]:
|
3359 4728 | /// :param integer_list typing.Optional\[typing.List\[int\]\]:
|
3360 4729 | /// :param boolean_list typing.Optional\[typing.List\[bool\]\]:
|
3361 4730 | /// :param timestamp_list typing.Optional\[typing.List\[rest_json.types.DateTime\]\]:
|
3362 4731 | /// :param enum_list typing.Optional\[typing.List\[rest_json.model.FooEnum\]\]:
|
3363 4732 | /// :param int_enum_list typing.Optional\[typing.List\[int\]\]:
|
3364 4733 | /// :param nested_string_list typing.Optional\[typing.List\[typing.List\[str\]\]\]:
|
3365 4734 | /// :param structure_list typing.Optional\[typing.List\[rest_json.model.StructureListMember\]\]:
|
3366 4735 | /// :rtype None:
|
4736 + | /* StructureGenerator.kt:197 */
|
3367 4737 | #[allow(missing_docs)] // documentation missing in model
|
4738 + | /* RustType.kt:516 */
|
3368 4739 | #[derive(
|
3369 4740 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
3370 4741 | )]
|
3371 - | pub struct JsonListsOutput {
|
4742 + | pub /* StructureGenerator.kt:201 */ struct JsonListsOutput {
|
4743 + | /* RustType.kt:516 */
|
3372 4744 | #[pyo3(get, set)]
|
4745 + | /* PythonServerStructureGenerator.kt:80 */
|
3373 4746 | /// :type typing.Optional\[typing.List\[str\]\]:
|
4747 + | /* StructureGenerator.kt:231 */
|
3374 4748 | #[allow(missing_docs)] // documentation missing in model
|
3375 4749 | pub string_list: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
4750 + | /* RustType.kt:516 */
|
3376 4751 | #[pyo3(get, set)]
|
4752 + | /* PythonServerStructureGenerator.kt:80 */
|
3377 4753 | /// :type typing.Optional\[typing.List\[str\]\]:
|
4754 + | /* StructureGenerator.kt:231 */
|
3378 4755 | #[allow(missing_docs)] // documentation missing in model
|
3379 4756 | pub string_set: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
4757 + | /* RustType.kt:516 */
|
3380 4758 | #[pyo3(get, set)]
|
4759 + | /* PythonServerStructureGenerator.kt:80 */
|
3381 4760 | /// :type typing.Optional\[typing.List\[int\]\]:
|
4761 + | /* StructureGenerator.kt:231 */
|
3382 4762 | #[allow(missing_docs)] // documentation missing in model
|
3383 4763 | pub integer_list: ::std::option::Option<::std::vec::Vec<i32>>,
|
4764 + | /* RustType.kt:516 */
|
3384 4765 | #[pyo3(get, set)]
|
4766 + | /* PythonServerStructureGenerator.kt:80 */
|
3385 4767 | /// :type typing.Optional\[typing.List\[bool\]\]:
|
4768 + | /* StructureGenerator.kt:231 */
|
3386 4769 | #[allow(missing_docs)] // documentation missing in model
|
3387 4770 | pub boolean_list: ::std::option::Option<::std::vec::Vec<bool>>,
|
4771 + | /* RustType.kt:516 */
|
3388 4772 | #[pyo3(get, set)]
|
4773 + | /* PythonServerStructureGenerator.kt:80 */
|
3389 4774 | /// :type typing.Optional\[typing.List\[rest_json.types.DateTime\]\]:
|
4775 + | /* StructureGenerator.kt:231 */
|
3390 4776 | #[allow(missing_docs)] // documentation missing in model
|
3391 4777 | pub timestamp_list:
|
3392 4778 | ::std::option::Option<::std::vec::Vec<::aws_smithy_http_server_python::types::DateTime>>,
|
4779 + | /* RustType.kt:516 */
|
3393 4780 | #[pyo3(get, set)]
|
4781 + | /* PythonServerStructureGenerator.kt:80 */
|
3394 4782 | /// :type typing.Optional\[typing.List\[rest_json.model.FooEnum\]\]:
|
4783 + | /* StructureGenerator.kt:231 */
|
3395 4784 | #[allow(missing_docs)] // documentation missing in model
|
3396 4785 | pub enum_list: ::std::option::Option<::std::vec::Vec<crate::model::FooEnum>>,
|
4786 + | /* RustType.kt:516 */
|
3397 4787 | #[pyo3(get, set)]
|
4788 + | /* PythonServerStructureGenerator.kt:80 */
|
3398 4789 | /// :type typing.Optional\[typing.List\[int\]\]:
|
4790 + | /* StructureGenerator.kt:231 */
|
3399 4791 | #[allow(missing_docs)] // documentation missing in model
|
3400 4792 | pub int_enum_list: ::std::option::Option<::std::vec::Vec<i32>>,
|
4793 + | /* RustType.kt:516 */
|
3401 4794 | #[pyo3(get, set)]
|
4795 + | /* PythonServerStructureGenerator.kt:80 */
|
3402 4796 | /// :type typing.Optional\[typing.List\[typing.List\[str\]\]\]:
|
3403 - | /// A list of lists of strings.
|
4797 + | /// /* StructureGenerator.kt:231 */A list of lists of strings.
|
3404 4798 | pub nested_string_list:
|
3405 4799 | ::std::option::Option<::std::vec::Vec<::std::vec::Vec<::std::string::String>>>,
|
4800 + | /* RustType.kt:516 */
|
3406 4801 | #[pyo3(get, set)]
|
4802 + | /* PythonServerStructureGenerator.kt:80 */
|
3407 4803 | /// :type typing.Optional\[typing.List\[rest_json.model.StructureListMember\]\]:
|
4804 + | /* StructureGenerator.kt:231 */
|
3408 4805 | #[allow(missing_docs)] // documentation missing in model
|
3409 4806 | pub structure_list: ::std::option::Option<::std::vec::Vec<crate::model::StructureListMember>>,
|
4807 + | /* StructureGenerator.kt:201 */
|
3410 4808 | }
|
4809 + | /* StructureGenerator.kt:135 */
|
3411 4810 | impl JsonListsOutput {
|
4811 + | /* StructureGenerator.kt:231 */
|
3412 4812 | #[allow(missing_docs)] // documentation missing in model
|
4813 + | /* StructureGenerator.kt:166 */
|
3413 4814 | pub fn string_list(&self) -> ::std::option::Option<&[::std::string::String]> {
|
4815 + | /* StructureGenerator.kt:169 */
|
3414 4816 | self.string_list.as_deref()
|
4817 + | /* StructureGenerator.kt:166 */
|
3415 4818 | }
|
4819 + | /* StructureGenerator.kt:231 */
|
3416 4820 | #[allow(missing_docs)] // documentation missing in model
|
4821 + | /* StructureGenerator.kt:166 */
|
3417 4822 | pub fn string_set(&self) -> ::std::option::Option<&[::std::string::String]> {
|
4823 + | /* StructureGenerator.kt:169 */
|
3418 4824 | self.string_set.as_deref()
|
4825 + | /* StructureGenerator.kt:166 */
|
3419 4826 | }
|
4827 + | /* StructureGenerator.kt:231 */
|
3420 4828 | #[allow(missing_docs)] // documentation missing in model
|
4829 + | /* StructureGenerator.kt:166 */
|
3421 4830 | pub fn integer_list(&self) -> ::std::option::Option<&[i32]> {
|
4831 + | /* StructureGenerator.kt:169 */
|
3422 4832 | self.integer_list.as_deref()
|
4833 + | /* StructureGenerator.kt:166 */
|
3423 4834 | }
|
4835 + | /* StructureGenerator.kt:231 */
|
3424 4836 | #[allow(missing_docs)] // documentation missing in model
|
4837 + | /* StructureGenerator.kt:166 */
|
3425 4838 | pub fn boolean_list(&self) -> ::std::option::Option<&[bool]> {
|
4839 + | /* StructureGenerator.kt:169 */
|
3426 4840 | self.boolean_list.as_deref()
|
4841 + | /* StructureGenerator.kt:166 */
|
3427 4842 | }
|
4843 + | /* StructureGenerator.kt:231 */
|
3428 4844 | #[allow(missing_docs)] // documentation missing in model
|
4845 + | /* StructureGenerator.kt:166 */
|
3429 4846 | pub fn timestamp_list(
|
3430 4847 | &self,
|
3431 4848 | ) -> ::std::option::Option<&[::aws_smithy_http_server_python::types::DateTime]> {
|
4849 + | /* StructureGenerator.kt:169 */
|
3432 4850 | self.timestamp_list.as_deref()
|
4851 + | /* StructureGenerator.kt:166 */
|
3433 4852 | }
|
4853 + | /* StructureGenerator.kt:231 */
|
3434 4854 | #[allow(missing_docs)] // documentation missing in model
|
4855 + | /* StructureGenerator.kt:166 */
|
3435 4856 | pub fn enum_list(&self) -> ::std::option::Option<&[crate::model::FooEnum]> {
|
4857 + | /* StructureGenerator.kt:169 */
|
3436 4858 | self.enum_list.as_deref()
|
4859 + | /* StructureGenerator.kt:166 */
|
3437 4860 | }
|
4861 + | /* StructureGenerator.kt:231 */
|
3438 4862 | #[allow(missing_docs)] // documentation missing in model
|
4863 + | /* StructureGenerator.kt:166 */
|
3439 4864 | pub fn int_enum_list(&self) -> ::std::option::Option<&[i32]> {
|
4865 + | /* StructureGenerator.kt:169 */
|
3440 4866 | self.int_enum_list.as_deref()
|
4867 + | /* StructureGenerator.kt:166 */
|
3441 4868 | }
|
3442 - | /// A list of lists of strings.
|
4869 + | /// /* StructureGenerator.kt:231 */A list of lists of strings.
|
4870 + | /* StructureGenerator.kt:166 */
|
3443 4871 | pub fn nested_string_list(
|
3444 4872 | &self,
|
3445 4873 | ) -> ::std::option::Option<&[::std::vec::Vec<::std::string::String>]> {
|
4874 + | /* StructureGenerator.kt:169 */
|
3446 4875 | self.nested_string_list.as_deref()
|
4876 + | /* StructureGenerator.kt:166 */
|
3447 4877 | }
|
4878 + | /* StructureGenerator.kt:231 */
|
3448 4879 | #[allow(missing_docs)] // documentation missing in model
|
4880 + | /* StructureGenerator.kt:166 */
|
3449 4881 | pub fn structure_list(&self) -> ::std::option::Option<&[crate::model::StructureListMember]> {
|
4882 + | /* StructureGenerator.kt:169 */
|
3450 4883 | self.structure_list.as_deref()
|
4884 + | /* StructureGenerator.kt:166 */
|
3451 4885 | }
|
4886 + | /* StructureGenerator.kt:135 */
|
3452 4887 | }
|
4888 + | /* RustType.kt:516 */
|
3453 4889 | #[allow(clippy::new_without_default)]
|
4890 + | /* RustType.kt:516 */
|
3454 4891 | #[allow(clippy::too_many_arguments)]
|
4892 + | /* RustType.kt:516 */
|
3455 4893 | #[::pyo3::pymethods]
|
4894 + | /* PythonServerStructureGenerator.kt:88 */
|
3456 4895 | impl JsonListsOutput {
|
3457 4896 | #[new]
|
3458 4897 | pub fn new(
|
3459 4898 | string_list: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
3460 4899 | string_set: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
3461 4900 | integer_list: ::std::option::Option<::std::vec::Vec<i32>>,
|
3462 4901 | boolean_list: ::std::option::Option<::std::vec::Vec<bool>>,
|
3463 4902 | timestamp_list: ::std::option::Option<
|
3464 4903 | ::std::vec::Vec<::aws_smithy_http_server_python::types::DateTime>,
|
3465 4904 | >,
|
3466 4905 | enum_list: ::std::option::Option<::std::vec::Vec<crate::model::FooEnum>>,
|
3467 4906 | int_enum_list: ::std::option::Option<::std::vec::Vec<i32>>,
|
3468 4907 | nested_string_list: ::std::option::Option<
|
3469 4908 | ::std::vec::Vec<::std::vec::Vec<::std::string::String>>,
|
3470 4909 | >,
|
3471 4910 | structure_list: ::std::option::Option<::std::vec::Vec<crate::model::StructureListMember>>,
|
3472 4911 | ) -> Self {
|
3473 4912 | Self {
|
3474 4913 | string_list,
|
3475 4914 | string_set,
|
3476 4915 | integer_list,
|
3477 4916 | boolean_list,
|
3478 4917 | timestamp_list,
|
3479 4918 | enum_list,
|
3480 4919 | int_enum_list,
|
3481 4920 | nested_string_list,
|
3482 4921 | structure_list,
|
3483 4922 | }
|
3484 4923 | }
|
3485 4924 | fn __repr__(&self) -> String {
|
3486 4925 | format!("{self:?}")
|
3487 4926 | }
|
3488 4927 | fn __str__(&self) -> String {
|
3489 4928 | format!("{self:?}")
|
3490 4929 | }
|
3491 4930 | }
|
4931 + | /* PythonServerStructureGenerator.kt:111 */
|
3492 4932 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<JsonListsOutput> {
|
3493 4933 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
3494 4934 | ob.extract::<JsonListsOutput>().map(Box::new)
|
3495 4935 | }
|
3496 4936 | }
|
3497 4937 |
|
3498 4938 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<JsonListsOutput> {
|
3499 4939 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
3500 4940 | (*self).into_py(py)
|
3501 4941 | }
|
3502 4942 | }
|
4943 + | /* ServerCodegenVisitor.kt:370 */
|
3503 4944 | impl JsonListsOutput {
|
3504 - | /// Creates a new builder-style object to manufacture [`JsonListsOutput`](crate::output::JsonListsOutput).
|
4945 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`JsonListsOutput`](crate::output::JsonListsOutput).
|
4946 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
3505 4947 | pub fn builder() -> crate::output::json_lists_output::Builder {
|
4948 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
3506 4949 | crate::output::json_lists_output::Builder::default()
|
4950 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
3507 4951 | }
|
4952 + | /* ServerCodegenVisitor.kt:370 */
|
3508 4953 | }
|
3509 4954 |
|
4955 + | /* RustType.kt:516 */
|
3510 4956 | #[::pyo3::pyclass]
|
4957 + | /* PythonServerStructureGenerator.kt:63 */
|
3511 4958 | /// :param nested typing.Optional\[rest_json.model.RecursiveShapesInputOutputNested1\]:
|
3512 4959 | /// :rtype None:
|
4960 + | /* StructureGenerator.kt:197 */
|
3513 4961 | #[allow(missing_docs)] // documentation missing in model
|
4962 + | /* RustType.kt:516 */
|
3514 4963 | #[derive(
|
3515 4964 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
3516 4965 | )]
|
3517 - | pub struct RecursiveShapesOutput {
|
4966 + | pub /* StructureGenerator.kt:201 */ struct RecursiveShapesOutput {
|
4967 + | /* RustType.kt:516 */
|
3518 4968 | #[pyo3(get, set)]
|
4969 + | /* PythonServerStructureGenerator.kt:80 */
|
3519 4970 | /// :type typing.Optional\[rest_json.model.RecursiveShapesInputOutputNested1\]:
|
4971 + | /* StructureGenerator.kt:231 */
|
3520 4972 | #[allow(missing_docs)] // documentation missing in model
|
3521 4973 | pub nested: ::std::option::Option<crate::model::RecursiveShapesInputOutputNested1>,
|
4974 + | /* StructureGenerator.kt:201 */
|
3522 4975 | }
|
4976 + | /* StructureGenerator.kt:135 */
|
3523 4977 | impl RecursiveShapesOutput {
|
4978 + | /* StructureGenerator.kt:231 */
|
3524 4979 | #[allow(missing_docs)] // documentation missing in model
|
4980 + | /* StructureGenerator.kt:166 */
|
3525 4981 | pub fn nested(
|
3526 4982 | &self,
|
3527 4983 | ) -> ::std::option::Option<&crate::model::RecursiveShapesInputOutputNested1> {
|
4984 + | /* StructureGenerator.kt:170 */
|
3528 4985 | self.nested.as_ref()
|
4986 + | /* StructureGenerator.kt:166 */
|
3529 4987 | }
|
4988 + | /* StructureGenerator.kt:135 */
|
3530 4989 | }
|
4990 + | /* RustType.kt:516 */
|
3531 4991 | #[allow(clippy::new_without_default)]
|
4992 + | /* RustType.kt:516 */
|
3532 4993 | #[allow(clippy::too_many_arguments)]
|
4994 + | /* RustType.kt:516 */
|
3533 4995 | #[::pyo3::pymethods]
|
4996 + | /* PythonServerStructureGenerator.kt:88 */
|
3534 4997 | impl RecursiveShapesOutput {
|
3535 4998 | #[new]
|
3536 4999 | pub fn new(
|
3537 5000 | nested: ::std::option::Option<crate::model::RecursiveShapesInputOutputNested1>,
|
3538 5001 | ) -> Self {
|
3539 5002 | Self { nested }
|
3540 5003 | }
|
3541 5004 | fn __repr__(&self) -> String {
|
3542 5005 | format!("{self:?}")
|
3543 5006 | }
|
3544 5007 | fn __str__(&self) -> String {
|
3545 5008 | format!("{self:?}")
|
3546 5009 | }
|
3547 5010 | }
|
5011 + | /* PythonServerStructureGenerator.kt:111 */
|
3548 5012 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<RecursiveShapesOutput> {
|
3549 5013 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
3550 5014 | ob.extract::<RecursiveShapesOutput>().map(Box::new)
|
3551 5015 | }
|
3552 5016 | }
|
3553 5017 |
|
3554 5018 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<RecursiveShapesOutput> {
|
3555 5019 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
3556 5020 | (*self).into_py(py)
|
3557 5021 | }
|
3558 5022 | }
|
5023 + | /* ServerCodegenVisitor.kt:370 */
|
3559 5024 | impl RecursiveShapesOutput {
|
3560 - | /// Creates a new builder-style object to manufacture [`RecursiveShapesOutput`](crate::output::RecursiveShapesOutput).
|
5025 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`RecursiveShapesOutput`](crate::output::RecursiveShapesOutput).
|
5026 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
3561 5027 | pub fn builder() -> crate::output::recursive_shapes_output::Builder {
|
5028 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
3562 5029 | crate::output::recursive_shapes_output::Builder::default()
|
5030 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
3563 5031 | }
|
5032 + | /* ServerCodegenVisitor.kt:370 */
|
3564 5033 | }
|
3565 5034 |
|
5035 + | /* RustType.kt:516 */
|
3566 5036 | #[::pyo3::pyclass]
|
5037 + | /* PythonServerStructureGenerator.kt:63 */
|
3567 5038 | /// :param integer_enum1 typing.Optional\[int\]:
|
3568 5039 | /// :param integer_enum2 typing.Optional\[int\]:
|
3569 5040 | /// :param integer_enum3 typing.Optional\[int\]:
|
3570 5041 | /// :param integer_enum_list typing.Optional\[typing.List\[int\]\]:
|
3571 5042 | /// :param integer_enum_set typing.Optional\[typing.List\[int\]\]:
|
3572 5043 | /// :param integer_enum_map typing.Optional\[typing.Dict\[str, int\]\]:
|
3573 5044 | /// :rtype None:
|
5045 + | /* StructureGenerator.kt:197 */
|
3574 5046 | #[allow(missing_docs)] // documentation missing in model
|
5047 + | /* RustType.kt:516 */
|
3575 5048 | #[derive(::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug)]
|
3576 - | pub struct JsonIntEnumsOutput {
|
5049 + | pub /* StructureGenerator.kt:201 */ struct JsonIntEnumsOutput {
|
5050 + | /* RustType.kt:516 */
|
3577 5051 | #[pyo3(get, set)]
|
5052 + | /* PythonServerStructureGenerator.kt:80 */
|
3578 5053 | /// :type typing.Optional\[int\]:
|
5054 + | /* StructureGenerator.kt:231 */
|
3579 5055 | #[allow(missing_docs)] // documentation missing in model
|
3580 5056 | pub integer_enum1: ::std::option::Option<i32>,
|
5057 + | /* RustType.kt:516 */
|
3581 5058 | #[pyo3(get, set)]
|
5059 + | /* PythonServerStructureGenerator.kt:80 */
|
3582 5060 | /// :type typing.Optional\[int\]:
|
5061 + | /* StructureGenerator.kt:231 */
|
3583 5062 | #[allow(missing_docs)] // documentation missing in model
|
3584 5063 | pub integer_enum2: ::std::option::Option<i32>,
|
5064 + | /* RustType.kt:516 */
|
3585 5065 | #[pyo3(get, set)]
|
5066 + | /* PythonServerStructureGenerator.kt:80 */
|
3586 5067 | /// :type typing.Optional\[int\]:
|
5068 + | /* StructureGenerator.kt:231 */
|
3587 5069 | #[allow(missing_docs)] // documentation missing in model
|
3588 5070 | pub integer_enum3: ::std::option::Option<i32>,
|
5071 + | /* RustType.kt:516 */
|
3589 5072 | #[pyo3(get, set)]
|
5073 + | /* PythonServerStructureGenerator.kt:80 */
|
3590 5074 | /// :type typing.Optional\[typing.List\[int\]\]:
|
5075 + | /* StructureGenerator.kt:231 */
|
3591 5076 | #[allow(missing_docs)] // documentation missing in model
|
3592 5077 | pub integer_enum_list: ::std::option::Option<::std::vec::Vec<i32>>,
|
5078 + | /* RustType.kt:516 */
|
3593 5079 | #[pyo3(get, set)]
|
5080 + | /* PythonServerStructureGenerator.kt:80 */
|
3594 5081 | /// :type typing.Optional\[typing.List\[int\]\]:
|
5082 + | /* StructureGenerator.kt:231 */
|
3595 5083 | #[allow(missing_docs)] // documentation missing in model
|
3596 5084 | pub integer_enum_set: ::std::option::Option<::std::vec::Vec<i32>>,
|
5085 + | /* RustType.kt:516 */
|
3597 5086 | #[pyo3(get, set)]
|
5087 + | /* PythonServerStructureGenerator.kt:80 */
|
3598 5088 | /// :type typing.Optional\[typing.Dict\[str, int\]\]:
|
5089 + | /* StructureGenerator.kt:231 */
|
3599 5090 | #[allow(missing_docs)] // documentation missing in model
|
3600 5091 | pub integer_enum_map:
|
3601 5092 | ::std::option::Option<::std::collections::HashMap<::std::string::String, i32>>,
|
5093 + | /* StructureGenerator.kt:201 */
|
3602 5094 | }
|
5095 + | /* StructureGenerator.kt:135 */
|
3603 5096 | impl JsonIntEnumsOutput {
|
5097 + | /* StructureGenerator.kt:231 */
|
3604 5098 | #[allow(missing_docs)] // documentation missing in model
|
5099 + | /* StructureGenerator.kt:166 */
|
3605 5100 | pub fn integer_enum1(&self) -> ::std::option::Option<i32> {
|
5101 + | /* StructureGenerator.kt:168 */
|
3606 5102 | self.integer_enum1
|
5103 + | /* StructureGenerator.kt:166 */
|
3607 5104 | }
|
5105 + | /* StructureGenerator.kt:231 */
|
3608 5106 | #[allow(missing_docs)] // documentation missing in model
|
5107 + | /* StructureGenerator.kt:166 */
|
3609 5108 | pub fn integer_enum2(&self) -> ::std::option::Option<i32> {
|
5109 + | /* StructureGenerator.kt:168 */
|
3610 5110 | self.integer_enum2
|
5111 + | /* StructureGenerator.kt:166 */
|
3611 5112 | }
|
5113 + | /* StructureGenerator.kt:231 */
|
3612 5114 | #[allow(missing_docs)] // documentation missing in model
|
5115 + | /* StructureGenerator.kt:166 */
|
3613 5116 | pub fn integer_enum3(&self) -> ::std::option::Option<i32> {
|
5117 + | /* StructureGenerator.kt:168 */
|
3614 5118 | self.integer_enum3
|
5119 + | /* StructureGenerator.kt:166 */
|
3615 5120 | }
|
5121 + | /* StructureGenerator.kt:231 */
|
3616 5122 | #[allow(missing_docs)] // documentation missing in model
|
5123 + | /* StructureGenerator.kt:166 */
|
3617 5124 | pub fn integer_enum_list(&self) -> ::std::option::Option<&[i32]> {
|
5125 + | /* StructureGenerator.kt:169 */
|
3618 5126 | self.integer_enum_list.as_deref()
|
5127 + | /* StructureGenerator.kt:166 */
|
3619 5128 | }
|
5129 + | /* StructureGenerator.kt:231 */
|
3620 5130 | #[allow(missing_docs)] // documentation missing in model
|
5131 + | /* StructureGenerator.kt:166 */
|
3621 5132 | pub fn integer_enum_set(&self) -> ::std::option::Option<&[i32]> {
|
5133 + | /* StructureGenerator.kt:169 */
|
3622 5134 | self.integer_enum_set.as_deref()
|
5135 + | /* StructureGenerator.kt:166 */
|
3623 5136 | }
|
5137 + | /* StructureGenerator.kt:231 */
|
3624 5138 | #[allow(missing_docs)] // documentation missing in model
|
5139 + | /* StructureGenerator.kt:166 */
|
3625 5140 | pub fn integer_enum_map(
|
3626 5141 | &self,
|
3627 5142 | ) -> ::std::option::Option<&::std::collections::HashMap<::std::string::String, i32>> {
|
5143 + | /* StructureGenerator.kt:170 */
|
3628 5144 | self.integer_enum_map.as_ref()
|
5145 + | /* StructureGenerator.kt:166 */
|
3629 5146 | }
|
5147 + | /* StructureGenerator.kt:135 */
|
3630 5148 | }
|
5149 + | /* RustType.kt:516 */
|
3631 5150 | #[allow(clippy::new_without_default)]
|
5151 + | /* RustType.kt:516 */
|
3632 5152 | #[allow(clippy::too_many_arguments)]
|
5153 + | /* RustType.kt:516 */
|
3633 5154 | #[::pyo3::pymethods]
|
5155 + | /* PythonServerStructureGenerator.kt:88 */
|
3634 5156 | impl JsonIntEnumsOutput {
|
3635 5157 | #[new]
|
3636 5158 | pub fn new(
|
3637 5159 | integer_enum1: ::std::option::Option<i32>,
|
3638 5160 | integer_enum2: ::std::option::Option<i32>,
|
3639 5161 | integer_enum3: ::std::option::Option<i32>,
|
3640 5162 | integer_enum_list: ::std::option::Option<::std::vec::Vec<i32>>,
|
3641 5163 | integer_enum_set: ::std::option::Option<::std::vec::Vec<i32>>,
|
3642 5164 | integer_enum_map: ::std::option::Option<
|
3643 5165 | ::std::collections::HashMap<::std::string::String, i32>,
|
3644 5166 | >,
|
3645 5167 | ) -> Self {
|
3646 5168 | Self {
|
3647 5169 | integer_enum1,
|
3648 5170 | integer_enum2,
|
3649 5171 | integer_enum3,
|
3650 5172 | integer_enum_list,
|
3651 5173 | integer_enum_set,
|
3652 5174 | integer_enum_map,
|
3653 5175 | }
|
3654 5176 | }
|
3655 5177 | fn __repr__(&self) -> String {
|
3656 5178 | format!("{self:?}")
|
3657 5179 | }
|
3658 5180 | fn __str__(&self) -> String {
|
3659 5181 | format!("{self:?}")
|
3660 5182 | }
|
3661 5183 | }
|
5184 + | /* PythonServerStructureGenerator.kt:111 */
|
3662 5185 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<JsonIntEnumsOutput> {
|
3663 5186 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
3664 5187 | ob.extract::<JsonIntEnumsOutput>().map(Box::new)
|
3665 5188 | }
|
3666 5189 | }
|
3667 5190 |
|
3668 5191 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<JsonIntEnumsOutput> {
|
3669 5192 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
3670 5193 | (*self).into_py(py)
|
3671 5194 | }
|
3672 5195 | }
|
5196 + | /* ServerCodegenVisitor.kt:370 */
|
3673 5197 | impl JsonIntEnumsOutput {
|
3674 - | /// Creates a new builder-style object to manufacture [`JsonIntEnumsOutput`](crate::output::JsonIntEnumsOutput).
|
5198 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`JsonIntEnumsOutput`](crate::output::JsonIntEnumsOutput).
|
5199 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
3675 5200 | pub fn builder() -> crate::output::json_int_enums_output::Builder {
|
5201 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
3676 5202 | crate::output::json_int_enums_output::Builder::default()
|
5203 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
3677 5204 | }
|
5205 + | /* ServerCodegenVisitor.kt:370 */
|
3678 5206 | }
|
3679 5207 |
|
5208 + | /* RustType.kt:516 */
|
3680 5209 | #[::pyo3::pyclass]
|
5210 + | /* PythonServerStructureGenerator.kt:63 */
|
3681 5211 | /// :param foo_enum1 typing.Optional\[rest_json.model.FooEnum\]:
|
3682 5212 | /// :param foo_enum2 typing.Optional\[rest_json.model.FooEnum\]:
|
3683 5213 | /// :param foo_enum3 typing.Optional\[rest_json.model.FooEnum\]:
|
3684 5214 | /// :param foo_enum_list typing.Optional\[typing.List\[rest_json.model.FooEnum\]\]:
|
3685 5215 | /// :param foo_enum_set typing.Optional\[typing.List\[rest_json.model.FooEnum\]\]:
|
3686 5216 | /// :param foo_enum_map typing.Optional\[typing.Dict\[str, rest_json.model.FooEnum\]\]:
|
3687 5217 | /// :rtype None:
|
5218 + | /* StructureGenerator.kt:197 */
|
3688 5219 | #[allow(missing_docs)] // documentation missing in model
|
5220 + | /* RustType.kt:516 */
|
3689 5221 | #[derive(::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug)]
|
3690 - | pub struct JsonEnumsOutput {
|
5222 + | pub /* StructureGenerator.kt:201 */ struct JsonEnumsOutput {
|
5223 + | /* RustType.kt:516 */
|
3691 5224 | #[pyo3(get, set)]
|
5225 + | /* PythonServerStructureGenerator.kt:80 */
|
3692 5226 | /// :type typing.Optional\[rest_json.model.FooEnum\]:
|
5227 + | /* StructureGenerator.kt:231 */
|
3693 5228 | #[allow(missing_docs)] // documentation missing in model
|
3694 5229 | pub foo_enum1: ::std::option::Option<crate::model::FooEnum>,
|
5230 + | /* RustType.kt:516 */
|
3695 5231 | #[pyo3(get, set)]
|
5232 + | /* PythonServerStructureGenerator.kt:80 */
|
3696 5233 | /// :type typing.Optional\[rest_json.model.FooEnum\]:
|
5234 + | /* StructureGenerator.kt:231 */
|
3697 5235 | #[allow(missing_docs)] // documentation missing in model
|
3698 5236 | pub foo_enum2: ::std::option::Option<crate::model::FooEnum>,
|
5237 + | /* RustType.kt:516 */
|
3699 5238 | #[pyo3(get, set)]
|
5239 + | /* PythonServerStructureGenerator.kt:80 */
|
3700 5240 | /// :type typing.Optional\[rest_json.model.FooEnum\]:
|
5241 + | /* StructureGenerator.kt:231 */
|
3701 5242 | #[allow(missing_docs)] // documentation missing in model
|
3702 5243 | pub foo_enum3: ::std::option::Option<crate::model::FooEnum>,
|
5244 + | /* RustType.kt:516 */
|
3703 5245 | #[pyo3(get, set)]
|
5246 + | /* PythonServerStructureGenerator.kt:80 */
|
3704 5247 | /// :type typing.Optional\[typing.List\[rest_json.model.FooEnum\]\]:
|
5248 + | /* StructureGenerator.kt:231 */
|
3705 5249 | #[allow(missing_docs)] // documentation missing in model
|
3706 5250 | pub foo_enum_list: ::std::option::Option<::std::vec::Vec<crate::model::FooEnum>>,
|
5251 + | /* RustType.kt:516 */
|
3707 5252 | #[pyo3(get, set)]
|
5253 + | /* PythonServerStructureGenerator.kt:80 */
|
3708 5254 | /// :type typing.Optional\[typing.List\[rest_json.model.FooEnum\]\]:
|
5255 + | /* StructureGenerator.kt:231 */
|
3709 5256 | #[allow(missing_docs)] // documentation missing in model
|
3710 5257 | pub foo_enum_set: ::std::option::Option<::std::vec::Vec<crate::model::FooEnum>>,
|
5258 + | /* RustType.kt:516 */
|
3711 5259 | #[pyo3(get, set)]
|
5260 + | /* PythonServerStructureGenerator.kt:80 */
|
3712 5261 | /// :type typing.Optional\[typing.Dict\[str, rest_json.model.FooEnum\]\]:
|
5262 + | /* StructureGenerator.kt:231 */
|
3713 5263 | #[allow(missing_docs)] // documentation missing in model
|
3714 5264 | pub foo_enum_map: ::std::option::Option<
|
3715 5265 | ::std::collections::HashMap<::std::string::String, crate::model::FooEnum>,
|
3716 5266 | >,
|
5267 + | /* StructureGenerator.kt:201 */
|
3717 5268 | }
|
5269 + | /* StructureGenerator.kt:135 */
|
3718 5270 | impl JsonEnumsOutput {
|
5271 + | /* StructureGenerator.kt:231 */
|
3719 5272 | #[allow(missing_docs)] // documentation missing in model
|
5273 + | /* StructureGenerator.kt:166 */
|
3720 5274 | pub fn foo_enum1(&self) -> ::std::option::Option<&crate::model::FooEnum> {
|
5275 + | /* StructureGenerator.kt:170 */
|
3721 5276 | self.foo_enum1.as_ref()
|
5277 + | /* StructureGenerator.kt:166 */
|
3722 5278 | }
|
5279 + | /* StructureGenerator.kt:231 */
|
3723 5280 | #[allow(missing_docs)] // documentation missing in model
|
5281 + | /* StructureGenerator.kt:166 */
|
3724 5282 | pub fn foo_enum2(&self) -> ::std::option::Option<&crate::model::FooEnum> {
|
5283 + | /* StructureGenerator.kt:170 */
|
3725 5284 | self.foo_enum2.as_ref()
|
5285 + | /* StructureGenerator.kt:166 */
|
3726 5286 | }
|
5287 + | /* StructureGenerator.kt:231 */
|
3727 5288 | #[allow(missing_docs)] // documentation missing in model
|
5289 + | /* StructureGenerator.kt:166 */
|
3728 5290 | pub fn foo_enum3(&self) -> ::std::option::Option<&crate::model::FooEnum> {
|
5291 + | /* StructureGenerator.kt:170 */
|
3729 5292 | self.foo_enum3.as_ref()
|
5293 + | /* StructureGenerator.kt:166 */
|
3730 5294 | }
|
5295 + | /* StructureGenerator.kt:231 */
|
3731 5296 | #[allow(missing_docs)] // documentation missing in model
|
5297 + | /* StructureGenerator.kt:166 */
|
3732 5298 | pub fn foo_enum_list(&self) -> ::std::option::Option<&[crate::model::FooEnum]> {
|
5299 + | /* StructureGenerator.kt:169 */
|
3733 5300 | self.foo_enum_list.as_deref()
|
5301 + | /* StructureGenerator.kt:166 */
|
3734 5302 | }
|
5303 + | /* StructureGenerator.kt:231 */
|
3735 5304 | #[allow(missing_docs)] // documentation missing in model
|
5305 + | /* StructureGenerator.kt:166 */
|
3736 5306 | pub fn foo_enum_set(&self) -> ::std::option::Option<&[crate::model::FooEnum]> {
|
5307 + | /* StructureGenerator.kt:169 */
|
3737 5308 | self.foo_enum_set.as_deref()
|
5309 + | /* StructureGenerator.kt:166 */
|
3738 5310 | }
|
5311 + | /* StructureGenerator.kt:231 */
|
3739 5312 | #[allow(missing_docs)] // documentation missing in model
|
5313 + | /* StructureGenerator.kt:166 */
|
3740 5314 | pub fn foo_enum_map(
|
3741 5315 | &self,
|
3742 5316 | ) -> ::std::option::Option<
|
3743 5317 | &::std::collections::HashMap<::std::string::String, crate::model::FooEnum>,
|
3744 5318 | > {
|
5319 + | /* StructureGenerator.kt:170 */
|
3745 5320 | self.foo_enum_map.as_ref()
|
5321 + | /* StructureGenerator.kt:166 */
|
3746 5322 | }
|
5323 + | /* StructureGenerator.kt:135 */
|
3747 5324 | }
|
5325 + | /* RustType.kt:516 */
|
3748 5326 | #[allow(clippy::new_without_default)]
|
5327 + | /* RustType.kt:516 */
|
3749 5328 | #[allow(clippy::too_many_arguments)]
|
5329 + | /* RustType.kt:516 */
|
3750 5330 | #[::pyo3::pymethods]
|
5331 + | /* PythonServerStructureGenerator.kt:88 */
|
3751 5332 | impl JsonEnumsOutput {
|
3752 5333 | #[new]
|
3753 5334 | pub fn new(
|
3754 5335 | foo_enum1: ::std::option::Option<crate::model::FooEnum>,
|
3755 5336 | foo_enum2: ::std::option::Option<crate::model::FooEnum>,
|
3756 5337 | foo_enum3: ::std::option::Option<crate::model::FooEnum>,
|
3757 5338 | foo_enum_list: ::std::option::Option<::std::vec::Vec<crate::model::FooEnum>>,
|
3758 5339 | foo_enum_set: ::std::option::Option<::std::vec::Vec<crate::model::FooEnum>>,
|
3759 5340 | foo_enum_map: ::std::option::Option<
|
3760 5341 | ::std::collections::HashMap<::std::string::String, crate::model::FooEnum>,
|
3761 5342 | >,
|
3762 5343 | ) -> Self {
|
3763 5344 | Self {
|
3764 5345 | foo_enum1,
|
3765 5346 | foo_enum2,
|
3766 5347 | foo_enum3,
|
3767 5348 | foo_enum_list,
|
3768 5349 | foo_enum_set,
|
3769 5350 | foo_enum_map,
|
3770 5351 | }
|
3771 5352 | }
|
3772 5353 | fn __repr__(&self) -> String {
|
3773 5354 | format!("{self:?}")
|
3774 5355 | }
|
3775 5356 | fn __str__(&self) -> String {
|
3776 5357 | format!("{self:?}")
|
3777 5358 | }
|
3778 5359 | }
|
5360 + | /* PythonServerStructureGenerator.kt:111 */
|
3779 5361 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<JsonEnumsOutput> {
|
3780 5362 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
3781 5363 | ob.extract::<JsonEnumsOutput>().map(Box::new)
|
3782 5364 | }
|
3783 5365 | }
|
3784 5366 |
|
3785 5367 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<JsonEnumsOutput> {
|
3786 5368 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
3787 5369 | (*self).into_py(py)
|
3788 5370 | }
|
3789 5371 | }
|
5372 + | /* ServerCodegenVisitor.kt:370 */
|
3790 5373 | impl JsonEnumsOutput {
|
3791 - | /// Creates a new builder-style object to manufacture [`JsonEnumsOutput`](crate::output::JsonEnumsOutput).
|
5374 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`JsonEnumsOutput`](crate::output::JsonEnumsOutput).
|
5375 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
3792 5376 | pub fn builder() -> crate::output::json_enums_output::Builder {
|
5377 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
3793 5378 | crate::output::json_enums_output::Builder::default()
|
5379 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
3794 5380 | }
|
5381 + | /* ServerCodegenVisitor.kt:370 */
|
3795 5382 | }
|
3796 5383 |
|
5384 + | /* RustType.kt:516 */
|
3797 5385 | #[::pyo3::pyclass]
|
5386 + | /* PythonServerStructureGenerator.kt:63 */
|
3798 5387 | /// :param normal typing.Optional\[rest_json.types.DateTime\]:
|
3799 5388 | /// :param date_time typing.Optional\[rest_json.types.DateTime\]:
|
3800 5389 | /// :param date_time_on_target typing.Optional\[rest_json.types.DateTime\]:
|
3801 5390 | /// :param epoch_seconds typing.Optional\[rest_json.types.DateTime\]:
|
3802 5391 | /// :param epoch_seconds_on_target typing.Optional\[rest_json.types.DateTime\]:
|
3803 5392 | /// :param http_date typing.Optional\[rest_json.types.DateTime\]:
|
3804 5393 | /// :param http_date_on_target typing.Optional\[rest_json.types.DateTime\]:
|
3805 5394 | /// :rtype None:
|
5395 + | /* StructureGenerator.kt:197 */
|
3806 5396 | #[allow(missing_docs)] // documentation missing in model
|
5397 + | /* RustType.kt:516 */
|
3807 5398 | #[derive(
|
3808 5399 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
3809 5400 | )]
|
3810 - | pub struct JsonTimestampsOutput {
|
5401 + | pub /* StructureGenerator.kt:201 */ struct JsonTimestampsOutput {
|
5402 + | /* RustType.kt:516 */
|
3811 5403 | #[pyo3(get, set)]
|
5404 + | /* PythonServerStructureGenerator.kt:80 */
|
3812 5405 | /// :type typing.Optional\[rest_json.types.DateTime\]:
|
5406 + | /* StructureGenerator.kt:231 */
|
3813 5407 | #[allow(missing_docs)] // documentation missing in model
|
3814 5408 | pub normal: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
5409 + | /* RustType.kt:516 */
|
3815 5410 | #[pyo3(get, set)]
|
5411 + | /* PythonServerStructureGenerator.kt:80 */
|
3816 5412 | /// :type typing.Optional\[rest_json.types.DateTime\]:
|
5413 + | /* StructureGenerator.kt:231 */
|
3817 5414 | #[allow(missing_docs)] // documentation missing in model
|
3818 5415 | pub date_time: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
5416 + | /* RustType.kt:516 */
|
3819 5417 | #[pyo3(get, set)]
|
5418 + | /* PythonServerStructureGenerator.kt:80 */
|
3820 5419 | /// :type typing.Optional\[rest_json.types.DateTime\]:
|
5420 + | /* StructureGenerator.kt:231 */
|
3821 5421 | #[allow(missing_docs)] // documentation missing in model
|
3822 5422 | pub date_time_on_target:
|
3823 5423 | ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
5424 + | /* RustType.kt:516 */
|
3824 5425 | #[pyo3(get, set)]
|
5426 + | /* PythonServerStructureGenerator.kt:80 */
|
3825 5427 | /// :type typing.Optional\[rest_json.types.DateTime\]:
|
5428 + | /* StructureGenerator.kt:231 */
|
3826 5429 | #[allow(missing_docs)] // documentation missing in model
|
3827 5430 | pub epoch_seconds: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
5431 + | /* RustType.kt:516 */
|
3828 5432 | #[pyo3(get, set)]
|
5433 + | /* PythonServerStructureGenerator.kt:80 */
|
3829 5434 | /// :type typing.Optional\[rest_json.types.DateTime\]:
|
5435 + | /* StructureGenerator.kt:231 */
|
3830 5436 | #[allow(missing_docs)] // documentation missing in model
|
3831 5437 | pub epoch_seconds_on_target:
|
3832 5438 | ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
5439 + | /* RustType.kt:516 */
|
3833 5440 | #[pyo3(get, set)]
|
5441 + | /* PythonServerStructureGenerator.kt:80 */
|
3834 5442 | /// :type typing.Optional\[rest_json.types.DateTime\]:
|
5443 + | /* StructureGenerator.kt:231 */
|
3835 5444 | #[allow(missing_docs)] // documentation missing in model
|
3836 5445 | pub http_date: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
5446 + | /* RustType.kt:516 */
|
3837 5447 | #[pyo3(get, set)]
|
5448 + | /* PythonServerStructureGenerator.kt:80 */
|
3838 5449 | /// :type typing.Optional\[rest_json.types.DateTime\]:
|
5450 + | /* StructureGenerator.kt:231 */
|
3839 5451 | #[allow(missing_docs)] // documentation missing in model
|
3840 5452 | pub http_date_on_target:
|
3841 5453 | ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
5454 + | /* StructureGenerator.kt:201 */
|
3842 5455 | }
|
5456 + | /* StructureGenerator.kt:135 */
|
3843 5457 | impl JsonTimestampsOutput {
|
5458 + | /* StructureGenerator.kt:231 */
|
3844 5459 | #[allow(missing_docs)] // documentation missing in model
|
5460 + | /* StructureGenerator.kt:166 */
|
3845 5461 | pub fn normal(
|
3846 5462 | &self,
|
3847 5463 | ) -> ::std::option::Option<&::aws_smithy_http_server_python::types::DateTime> {
|
5464 + | /* StructureGenerator.kt:170 */
|
3848 5465 | self.normal.as_ref()
|
5466 + | /* StructureGenerator.kt:166 */
|
3849 5467 | }
|
5468 + | /* StructureGenerator.kt:231 */
|
3850 5469 | #[allow(missing_docs)] // documentation missing in model
|
5470 + | /* StructureGenerator.kt:166 */
|
3851 5471 | pub fn date_time(
|
3852 5472 | &self,
|
3853 5473 | ) -> ::std::option::Option<&::aws_smithy_http_server_python::types::DateTime> {
|
5474 + | /* StructureGenerator.kt:170 */
|
3854 5475 | self.date_time.as_ref()
|
5476 + | /* StructureGenerator.kt:166 */
|
3855 5477 | }
|
5478 + | /* StructureGenerator.kt:231 */
|
3856 5479 | #[allow(missing_docs)] // documentation missing in model
|
5480 + | /* StructureGenerator.kt:166 */
|
3857 5481 | pub fn date_time_on_target(
|
3858 5482 | &self,
|
3859 5483 | ) -> ::std::option::Option<&::aws_smithy_http_server_python::types::DateTime> {
|
5484 + | /* StructureGenerator.kt:170 */
|
3860 5485 | self.date_time_on_target.as_ref()
|
5486 + | /* StructureGenerator.kt:166 */
|
3861 5487 | }
|
5488 + | /* StructureGenerator.kt:231 */
|
3862 5489 | #[allow(missing_docs)] // documentation missing in model
|
5490 + | /* StructureGenerator.kt:166 */
|
3863 5491 | pub fn epoch_seconds(
|
3864 5492 | &self,
|
3865 5493 | ) -> ::std::option::Option<&::aws_smithy_http_server_python::types::DateTime> {
|
5494 + | /* StructureGenerator.kt:170 */
|
3866 5495 | self.epoch_seconds.as_ref()
|
5496 + | /* StructureGenerator.kt:166 */
|
3867 5497 | }
|
5498 + | /* StructureGenerator.kt:231 */
|
3868 5499 | #[allow(missing_docs)] // documentation missing in model
|
5500 + | /* StructureGenerator.kt:166 */
|
3869 5501 | pub fn epoch_seconds_on_target(
|
3870 5502 | &self,
|
3871 5503 | ) -> ::std::option::Option<&::aws_smithy_http_server_python::types::DateTime> {
|
5504 + | /* StructureGenerator.kt:170 */
|
3872 5505 | self.epoch_seconds_on_target.as_ref()
|
5506 + | /* StructureGenerator.kt:166 */
|
3873 5507 | }
|
5508 + | /* StructureGenerator.kt:231 */
|
3874 5509 | #[allow(missing_docs)] // documentation missing in model
|
5510 + | /* StructureGenerator.kt:166 */
|
3875 5511 | pub fn http_date(
|
3876 5512 | &self,
|
3877 5513 | ) -> ::std::option::Option<&::aws_smithy_http_server_python::types::DateTime> {
|
5514 + | /* StructureGenerator.kt:170 */
|
3878 5515 | self.http_date.as_ref()
|
5516 + | /* StructureGenerator.kt:166 */
|
3879 5517 | }
|
5518 + | /* StructureGenerator.kt:231 */
|
3880 5519 | #[allow(missing_docs)] // documentation missing in model
|
5520 + | /* StructureGenerator.kt:166 */
|
3881 5521 | pub fn http_date_on_target(
|
3882 5522 | &self,
|
3883 5523 | ) -> ::std::option::Option<&::aws_smithy_http_server_python::types::DateTime> {
|
5524 + | /* StructureGenerator.kt:170 */
|
3884 5525 | self.http_date_on_target.as_ref()
|
5526 + | /* StructureGenerator.kt:166 */
|
3885 5527 | }
|
5528 + | /* StructureGenerator.kt:135 */
|
3886 5529 | }
|
5530 + | /* RustType.kt:516 */
|
3887 5531 | #[allow(clippy::new_without_default)]
|
5532 + | /* RustType.kt:516 */
|
3888 5533 | #[allow(clippy::too_many_arguments)]
|
5534 + | /* RustType.kt:516 */
|
3889 5535 | #[::pyo3::pymethods]
|
5536 + | /* PythonServerStructureGenerator.kt:88 */
|
3890 5537 | impl JsonTimestampsOutput {
|
3891 5538 | #[new]
|
3892 5539 | pub fn new(
|
3893 5540 | normal: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
3894 5541 | date_time: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
3895 5542 | date_time_on_target: ::std::option::Option<
|
3896 5543 | ::aws_smithy_http_server_python::types::DateTime,
|
3897 5544 | >,
|
3898 5545 | epoch_seconds: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
3899 5546 | epoch_seconds_on_target: ::std::option::Option<
|
3900 5547 | ::aws_smithy_http_server_python::types::DateTime,
|
3901 5548 | >,
|
3902 5549 | http_date: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
3903 5550 | http_date_on_target: ::std::option::Option<
|
3904 5551 | ::aws_smithy_http_server_python::types::DateTime,
|
3905 5552 | >,
|
3906 5553 | ) -> Self {
|
3907 5554 | Self {
|
3908 5555 | normal,
|
3909 5556 | date_time,
|
3910 5557 | date_time_on_target,
|
3911 5558 | epoch_seconds,
|
3912 5559 | epoch_seconds_on_target,
|
3913 5560 | http_date,
|
3914 5561 | http_date_on_target,
|
3915 5562 | }
|
3916 5563 | }
|
3917 5564 | fn __repr__(&self) -> String {
|
3918 5565 | format!("{self:?}")
|
3919 5566 | }
|
3920 5567 | fn __str__(&self) -> String {
|
3921 5568 | format!("{self:?}")
|
3922 5569 | }
|
3923 5570 | }
|
5571 + | /* PythonServerStructureGenerator.kt:111 */
|
3924 5572 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<JsonTimestampsOutput> {
|
3925 5573 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
3926 5574 | ob.extract::<JsonTimestampsOutput>().map(Box::new)
|
3927 5575 | }
|
3928 5576 | }
|
3929 5577 |
|
3930 5578 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<JsonTimestampsOutput> {
|
3931 5579 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
3932 5580 | (*self).into_py(py)
|
3933 5581 | }
|
3934 5582 | }
|
5583 + | /* ServerCodegenVisitor.kt:370 */
|
3935 5584 | impl JsonTimestampsOutput {
|
3936 - | /// Creates a new builder-style object to manufacture [`JsonTimestampsOutput`](crate::output::JsonTimestampsOutput).
|
5585 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`JsonTimestampsOutput`](crate::output::JsonTimestampsOutput).
|
5586 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
3937 5587 | pub fn builder() -> crate::output::json_timestamps_output::Builder {
|
5588 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
3938 5589 | crate::output::json_timestamps_output::Builder::default()
|
5590 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
3939 5591 | }
|
5592 + | /* ServerCodegenVisitor.kt:370 */
|
3940 5593 | }
|
3941 5594 |
|
5595 + | /* RustType.kt:516 */
|
3942 5596 | #[::pyo3::pyclass]
|
5597 + | /* PythonServerStructureGenerator.kt:63 */
|
3943 5598 | /// :param foo typing.Optional\[str\]:
|
3944 5599 | /// :param string_value typing.Optional\[str\]:
|
3945 5600 | /// :param true_boolean_value typing.Optional\[bool\]:
|
3946 5601 | /// :param false_boolean_value typing.Optional\[bool\]:
|
3947 5602 | /// :param byte_value typing.Optional\[int\]:
|
3948 5603 | /// :param short_value typing.Optional\[int\]:
|
3949 5604 | /// :param integer_value typing.Optional\[int\]:
|
3950 5605 | /// :param long_value typing.Optional\[int\]:
|
3951 5606 | /// :param float_value typing.Optional\[float\]:
|
3952 5607 | /// :param double_value typing.Optional\[float\]:
|
3953 5608 | /// :rtype None:
|
5609 + | /* StructureGenerator.kt:197 */
|
3954 5610 | #[allow(missing_docs)] // documentation missing in model
|
5611 + | /* RustType.kt:516 */
|
3955 5612 | #[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
|
3956 - | pub struct SimpleScalarPropertiesOutput {
|
5613 + | pub /* StructureGenerator.kt:201 */ struct SimpleScalarPropertiesOutput {
|
5614 + | /* RustType.kt:516 */
|
3957 5615 | #[pyo3(get, set)]
|
5616 + | /* PythonServerStructureGenerator.kt:80 */
|
3958 5617 | /// :type typing.Optional\[str\]:
|
5618 + | /* StructureGenerator.kt:231 */
|
3959 5619 | #[allow(missing_docs)] // documentation missing in model
|
3960 5620 | pub foo: ::std::option::Option<::std::string::String>,
|
5621 + | /* RustType.kt:516 */
|
3961 5622 | #[pyo3(get, set)]
|
5623 + | /* PythonServerStructureGenerator.kt:80 */
|
3962 5624 | /// :type typing.Optional\[str\]:
|
5625 + | /* StructureGenerator.kt:231 */
|
3963 5626 | #[allow(missing_docs)] // documentation missing in model
|
3964 5627 | pub string_value: ::std::option::Option<::std::string::String>,
|
5628 + | /* RustType.kt:516 */
|
3965 5629 | #[pyo3(get, set)]
|
5630 + | /* PythonServerStructureGenerator.kt:80 */
|
3966 5631 | /// :type typing.Optional\[bool\]:
|
5632 + | /* StructureGenerator.kt:231 */
|
3967 5633 | #[allow(missing_docs)] // documentation missing in model
|
3968 5634 | pub true_boolean_value: ::std::option::Option<bool>,
|
5635 + | /* RustType.kt:516 */
|
3969 5636 | #[pyo3(get, set)]
|
5637 + | /* PythonServerStructureGenerator.kt:80 */
|
3970 5638 | /// :type typing.Optional\[bool\]:
|
5639 + | /* StructureGenerator.kt:231 */
|
3971 5640 | #[allow(missing_docs)] // documentation missing in model
|
3972 5641 | pub false_boolean_value: ::std::option::Option<bool>,
|
5642 + | /* RustType.kt:516 */
|
3973 5643 | #[pyo3(get, set)]
|
5644 + | /* PythonServerStructureGenerator.kt:80 */
|
3974 5645 | /// :type typing.Optional\[int\]:
|
5646 + | /* StructureGenerator.kt:231 */
|
3975 5647 | #[allow(missing_docs)] // documentation missing in model
|
3976 5648 | pub byte_value: ::std::option::Option<i8>,
|
5649 + | /* RustType.kt:516 */
|
3977 5650 | #[pyo3(get, set)]
|
5651 + | /* PythonServerStructureGenerator.kt:80 */
|
3978 5652 | /// :type typing.Optional\[int\]:
|
5653 + | /* StructureGenerator.kt:231 */
|
3979 5654 | #[allow(missing_docs)] // documentation missing in model
|
3980 5655 | pub short_value: ::std::option::Option<i16>,
|
5656 + | /* RustType.kt:516 */
|
3981 5657 | #[pyo3(get, set)]
|
5658 + | /* PythonServerStructureGenerator.kt:80 */
|
3982 5659 | /// :type typing.Optional\[int\]:
|
5660 + | /* StructureGenerator.kt:231 */
|
3983 5661 | #[allow(missing_docs)] // documentation missing in model
|
3984 5662 | pub integer_value: ::std::option::Option<i32>,
|
5663 + | /* RustType.kt:516 */
|
3985 5664 | #[pyo3(get, set)]
|
5665 + | /* PythonServerStructureGenerator.kt:80 */
|
3986 5666 | /// :type typing.Optional\[int\]:
|
5667 + | /* StructureGenerator.kt:231 */
|
3987 5668 | #[allow(missing_docs)] // documentation missing in model
|
3988 5669 | pub long_value: ::std::option::Option<i64>,
|
5670 + | /* RustType.kt:516 */
|
3989 5671 | #[pyo3(get, set)]
|
5672 + | /* PythonServerStructureGenerator.kt:80 */
|
3990 5673 | /// :type typing.Optional\[float\]:
|
5674 + | /* StructureGenerator.kt:231 */
|
3991 5675 | #[allow(missing_docs)] // documentation missing in model
|
3992 5676 | pub float_value: ::std::option::Option<f32>,
|
5677 + | /* RustType.kt:516 */
|
3993 5678 | #[pyo3(get, set)]
|
5679 + | /* PythonServerStructureGenerator.kt:80 */
|
3994 5680 | /// :type typing.Optional\[float\]:
|
5681 + | /* StructureGenerator.kt:231 */
|
3995 5682 | #[allow(missing_docs)] // documentation missing in model
|
3996 5683 | pub double_value: ::std::option::Option<f64>,
|
5684 + | /* StructureGenerator.kt:201 */
|
3997 5685 | }
|
5686 + | /* StructureGenerator.kt:135 */
|
3998 5687 | impl SimpleScalarPropertiesOutput {
|
5688 + | /* StructureGenerator.kt:231 */
|
3999 5689 | #[allow(missing_docs)] // documentation missing in model
|
5690 + | /* StructureGenerator.kt:166 */
|
4000 5691 | pub fn foo(&self) -> ::std::option::Option<&str> {
|
5692 + | /* StructureGenerator.kt:169 */
|
4001 5693 | self.foo.as_deref()
|
5694 + | /* StructureGenerator.kt:166 */
|
4002 5695 | }
|
5696 + | /* StructureGenerator.kt:231 */
|
4003 5697 | #[allow(missing_docs)] // documentation missing in model
|
5698 + | /* StructureGenerator.kt:166 */
|
4004 5699 | pub fn string_value(&self) -> ::std::option::Option<&str> {
|
5700 + | /* StructureGenerator.kt:169 */
|
4005 5701 | self.string_value.as_deref()
|
5702 + | /* StructureGenerator.kt:166 */
|
4006 5703 | }
|
5704 + | /* StructureGenerator.kt:231 */
|
4007 5705 | #[allow(missing_docs)] // documentation missing in model
|
5706 + | /* StructureGenerator.kt:166 */
|
4008 5707 | pub fn true_boolean_value(&self) -> ::std::option::Option<bool> {
|
5708 + | /* StructureGenerator.kt:168 */
|
4009 5709 | self.true_boolean_value
|
5710 + | /* StructureGenerator.kt:166 */
|
4010 5711 | }
|
5712 + | /* StructureGenerator.kt:231 */
|
4011 5713 | #[allow(missing_docs)] // documentation missing in model
|
5714 + | /* StructureGenerator.kt:166 */
|
4012 5715 | pub fn false_boolean_value(&self) -> ::std::option::Option<bool> {
|
5716 + | /* StructureGenerator.kt:168 */
|
4013 5717 | self.false_boolean_value
|
5718 + | /* StructureGenerator.kt:166 */
|
4014 5719 | }
|
5720 + | /* StructureGenerator.kt:231 */
|
4015 5721 | #[allow(missing_docs)] // documentation missing in model
|
5722 + | /* StructureGenerator.kt:166 */
|
4016 5723 | pub fn byte_value(&self) -> ::std::option::Option<i8> {
|
5724 + | /* StructureGenerator.kt:168 */
|
4017 5725 | self.byte_value
|
5726 + | /* StructureGenerator.kt:166 */
|
4018 5727 | }
|
5728 + | /* StructureGenerator.kt:231 */
|
4019 5729 | #[allow(missing_docs)] // documentation missing in model
|
5730 + | /* StructureGenerator.kt:166 */
|
4020 5731 | pub fn short_value(&self) -> ::std::option::Option<i16> {
|
5732 + | /* StructureGenerator.kt:168 */
|
4021 5733 | self.short_value
|
5734 + | /* StructureGenerator.kt:166 */
|
4022 5735 | }
|
5736 + | /* StructureGenerator.kt:231 */
|
4023 5737 | #[allow(missing_docs)] // documentation missing in model
|
5738 + | /* StructureGenerator.kt:166 */
|
4024 5739 | pub fn integer_value(&self) -> ::std::option::Option<i32> {
|
5740 + | /* StructureGenerator.kt:168 */
|
4025 5741 | self.integer_value
|
5742 + | /* StructureGenerator.kt:166 */
|
4026 5743 | }
|
5744 + | /* StructureGenerator.kt:231 */
|
4027 5745 | #[allow(missing_docs)] // documentation missing in model
|
5746 + | /* StructureGenerator.kt:166 */
|
4028 5747 | pub fn long_value(&self) -> ::std::option::Option<i64> {
|
5748 + | /* StructureGenerator.kt:168 */
|
4029 5749 | self.long_value
|
5750 + | /* StructureGenerator.kt:166 */
|
4030 5751 | }
|
5752 + | /* StructureGenerator.kt:231 */
|
4031 5753 | #[allow(missing_docs)] // documentation missing in model
|
5754 + | /* StructureGenerator.kt:166 */
|
4032 5755 | pub fn float_value(&self) -> ::std::option::Option<f32> {
|
5756 + | /* StructureGenerator.kt:168 */
|
4033 5757 | self.float_value
|
5758 + | /* StructureGenerator.kt:166 */
|
4034 5759 | }
|
5760 + | /* StructureGenerator.kt:231 */
|
4035 5761 | #[allow(missing_docs)] // documentation missing in model
|
5762 + | /* StructureGenerator.kt:166 */
|
4036 5763 | pub fn double_value(&self) -> ::std::option::Option<f64> {
|
5764 + | /* StructureGenerator.kt:168 */
|
4037 5765 | self.double_value
|
5766 + | /* StructureGenerator.kt:166 */
|
4038 5767 | }
|
5768 + | /* StructureGenerator.kt:135 */
|
4039 5769 | }
|
5770 + | /* RustType.kt:516 */
|
4040 5771 | #[allow(clippy::new_without_default)]
|
5772 + | /* RustType.kt:516 */
|
4041 5773 | #[allow(clippy::too_many_arguments)]
|
5774 + | /* RustType.kt:516 */
|
4042 5775 | #[::pyo3::pymethods]
|
5776 + | /* PythonServerStructureGenerator.kt:88 */
|
4043 5777 | impl SimpleScalarPropertiesOutput {
|
4044 5778 | #[new]
|
4045 5779 | pub fn new(
|
4046 5780 | foo: ::std::option::Option<::std::string::String>,
|
4047 5781 | string_value: ::std::option::Option<::std::string::String>,
|
4048 5782 | true_boolean_value: ::std::option::Option<bool>,
|
4049 5783 | false_boolean_value: ::std::option::Option<bool>,
|
4050 5784 | byte_value: ::std::option::Option<i8>,
|
4051 5785 | short_value: ::std::option::Option<i16>,
|
4052 5786 | integer_value: ::std::option::Option<i32>,
|
4053 5787 | long_value: ::std::option::Option<i64>,
|
4054 5788 | float_value: ::std::option::Option<f32>,
|
4055 5789 | double_value: ::std::option::Option<f64>,
|
4056 5790 | ) -> Self {
|
4057 5791 | Self {
|
4058 5792 | foo,
|
4059 5793 | string_value,
|
4060 5794 | true_boolean_value,
|
4061 5795 | false_boolean_value,
|
4062 5796 | byte_value,
|
4063 5797 | short_value,
|
4064 5798 | integer_value,
|
4065 5799 | long_value,
|
4066 5800 | float_value,
|
4067 5801 | double_value,
|
4068 5802 | }
|
4069 5803 | }
|
4070 5804 | fn __repr__(&self) -> String {
|
4071 5805 | format!("{self:?}")
|
4072 5806 | }
|
4073 5807 | fn __str__(&self) -> String {
|
4074 5808 | format!("{self:?}")
|
4075 5809 | }
|
4076 5810 | }
|
5811 + | /* PythonServerStructureGenerator.kt:111 */
|
4077 5812 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<SimpleScalarPropertiesOutput> {
|
4078 5813 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
4079 5814 | ob.extract::<SimpleScalarPropertiesOutput>().map(Box::new)
|
4080 5815 | }
|
4081 5816 | }
|
4082 5817 |
|
4083 5818 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<SimpleScalarPropertiesOutput> {
|
4084 5819 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
4085 5820 | (*self).into_py(py)
|
4086 5821 | }
|
4087 5822 | }
|
5823 + | /* ServerCodegenVisitor.kt:370 */
|
4088 5824 | impl SimpleScalarPropertiesOutput {
|
4089 - | /// Creates a new builder-style object to manufacture [`SimpleScalarPropertiesOutput`](crate::output::SimpleScalarPropertiesOutput).
|
5825 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`SimpleScalarPropertiesOutput`](crate::output::SimpleScalarPropertiesOutput).
|
5826 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4090 5827 | pub fn builder() -> crate::output::simple_scalar_properties_output::Builder {
|
5828 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
4091 5829 | crate::output::simple_scalar_properties_output::Builder::default()
|
5830 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4092 5831 | }
|
5832 + | /* ServerCodegenVisitor.kt:370 */
|
4093 5833 | }
|
4094 5834 |
|
5835 + | /* RustType.kt:516 */
|
4095 5836 | #[::pyo3::pyclass]
|
5837 + | /* PythonServerStructureGenerator.kt:63 */
|
4096 5838 | /// :param greeting typing.Optional\[str\]:
|
4097 5839 | /// :rtype None:
|
5840 + | /* StructureGenerator.kt:197 */
|
4098 5841 | #[allow(missing_docs)] // documentation missing in model
|
5842 + | /* RustType.kt:516 */
|
4099 5843 | #[derive(
|
4100 5844 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
4101 5845 | )]
|
4102 - | pub struct GreetingWithErrorsOutput {
|
5846 + | pub /* StructureGenerator.kt:201 */ struct GreetingWithErrorsOutput {
|
5847 + | /* RustType.kt:516 */
|
4103 5848 | #[pyo3(get, set)]
|
5849 + | /* PythonServerStructureGenerator.kt:80 */
|
4104 5850 | /// :type typing.Optional\[str\]:
|
5851 + | /* StructureGenerator.kt:231 */
|
4105 5852 | #[allow(missing_docs)] // documentation missing in model
|
4106 5853 | pub greeting: ::std::option::Option<::std::string::String>,
|
5854 + | /* StructureGenerator.kt:201 */
|
4107 5855 | }
|
5856 + | /* StructureGenerator.kt:135 */
|
4108 5857 | impl GreetingWithErrorsOutput {
|
5858 + | /* StructureGenerator.kt:231 */
|
4109 5859 | #[allow(missing_docs)] // documentation missing in model
|
5860 + | /* StructureGenerator.kt:166 */
|
4110 5861 | pub fn greeting(&self) -> ::std::option::Option<&str> {
|
5862 + | /* StructureGenerator.kt:169 */
|
4111 5863 | self.greeting.as_deref()
|
5864 + | /* StructureGenerator.kt:166 */
|
4112 5865 | }
|
5866 + | /* StructureGenerator.kt:135 */
|
4113 5867 | }
|
5868 + | /* RustType.kt:516 */
|
4114 5869 | #[allow(clippy::new_without_default)]
|
5870 + | /* RustType.kt:516 */
|
4115 5871 | #[allow(clippy::too_many_arguments)]
|
5872 + | /* RustType.kt:516 */
|
4116 5873 | #[::pyo3::pymethods]
|
5874 + | /* PythonServerStructureGenerator.kt:88 */
|
4117 5875 | impl GreetingWithErrorsOutput {
|
4118 5876 | #[new]
|
4119 5877 | pub fn new(greeting: ::std::option::Option<::std::string::String>) -> Self {
|
4120 5878 | Self { greeting }
|
4121 5879 | }
|
4122 5880 | fn __repr__(&self) -> String {
|
4123 5881 | format!("{self:?}")
|
4124 5882 | }
|
4125 5883 | fn __str__(&self) -> String {
|
4126 5884 | format!("{self:?}")
|
4127 5885 | }
|
4128 5886 | }
|
5887 + | /* PythonServerStructureGenerator.kt:111 */
|
4129 5888 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<GreetingWithErrorsOutput> {
|
4130 5889 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
4131 5890 | ob.extract::<GreetingWithErrorsOutput>().map(Box::new)
|
4132 5891 | }
|
4133 5892 | }
|
4134 5893 |
|
4135 5894 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<GreetingWithErrorsOutput> {
|
4136 5895 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
4137 5896 | (*self).into_py(py)
|
4138 5897 | }
|
4139 5898 | }
|
5899 + | /* ServerCodegenVisitor.kt:370 */
|
4140 5900 | impl GreetingWithErrorsOutput {
|
4141 - | /// Creates a new builder-style object to manufacture [`GreetingWithErrorsOutput`](crate::output::GreetingWithErrorsOutput).
|
5901 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`GreetingWithErrorsOutput`](crate::output::GreetingWithErrorsOutput).
|
5902 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4142 5903 | pub fn builder() -> crate::output::greeting_with_errors_output::Builder {
|
5904 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
4143 5905 | crate::output::greeting_with_errors_output::Builder::default()
|
5906 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4144 5907 | }
|
5908 + | /* ServerCodegenVisitor.kt:370 */
|
4145 5909 | }
|
4146 5910 |
|
5911 + | /* RustType.kt:516 */
|
4147 5912 | #[::pyo3::pyclass]
|
4148 - | /// :param foo typing.Optional\[str\]:
|
5913 + | /* PythonServerStructureGenerator.kt:63 */
|
4149 5914 | /// :param blob rest_json.types.ByteStream:
|
5915 + | /// :param foo typing.Optional\[str\]:
|
4150 5916 | /// :rtype None:
|
5917 + | /* StructureGenerator.kt:197 */
|
4151 5918 | #[allow(missing_docs)] // documentation missing in model
|
5919 + | /* RustType.kt:516 */
|
4152 5920 | #[derive(::std::clone::Clone, ::std::fmt::Debug)]
|
4153 - | pub struct StreamingTraitsWithMediaTypeOutput {
|
5921 + | pub /* StructureGenerator.kt:201 */ struct StreamingTraitsWithMediaTypeOutput {
|
5922 + | /* RustType.kt:516 */
|
4154 5923 | #[pyo3(get, set)]
|
5924 + | /* PythonServerStructureGenerator.kt:80 */
|
4155 5925 | /// :type typing.Optional\[str\]:
|
5926 + | /* StructureGenerator.kt:231 */
|
4156 5927 | #[allow(missing_docs)] // documentation missing in model
|
4157 5928 | pub foo: ::std::option::Option<::std::string::String>,
|
5929 + | /* RustType.kt:516 */
|
4158 5930 | #[pyo3(get, set)]
|
5931 + | /* PythonServerStructureGenerator.kt:80 */
|
4159 5932 | /// :type rest_json.types.ByteStream:
|
5933 + | /* StructureGenerator.kt:231 */
|
4160 5934 | #[allow(missing_docs)] // documentation missing in model
|
4161 5935 | pub blob: ::aws_smithy_http_server_python::types::ByteStream,
|
5936 + | /* StructureGenerator.kt:201 */
|
4162 5937 | }
|
5938 + | /* StructureGenerator.kt:135 */
|
4163 5939 | impl StreamingTraitsWithMediaTypeOutput {
|
5940 + | /* StructureGenerator.kt:231 */
|
4164 5941 | #[allow(missing_docs)] // documentation missing in model
|
5942 + | /* StructureGenerator.kt:166 */
|
4165 5943 | pub fn foo(&self) -> ::std::option::Option<&str> {
|
5944 + | /* StructureGenerator.kt:169 */
|
4166 5945 | self.foo.as_deref()
|
5946 + | /* StructureGenerator.kt:166 */
|
4167 5947 | }
|
5948 + | /* StructureGenerator.kt:231 */
|
4168 5949 | #[allow(missing_docs)] // documentation missing in model
|
5950 + | /* StructureGenerator.kt:166 */
|
4169 5951 | pub fn blob(&self) -> &::aws_smithy_http_server_python::types::ByteStream {
|
5952 + | /* StructureGenerator.kt:172 */
|
4170 5953 | &self.blob
|
5954 + | /* StructureGenerator.kt:166 */
|
4171 5955 | }
|
5956 + | /* StructureGenerator.kt:135 */
|
4172 5957 | }
|
5958 + | /* RustType.kt:516 */
|
4173 5959 | #[allow(clippy::new_without_default)]
|
5960 + | /* RustType.kt:516 */
|
4174 5961 | #[allow(clippy::too_many_arguments)]
|
5962 + | /* RustType.kt:516 */
|
4175 5963 | #[::pyo3::pymethods]
|
5964 + | /* PythonServerStructureGenerator.kt:88 */
|
4176 5965 | impl StreamingTraitsWithMediaTypeOutput {
|
4177 5966 | #[new]
|
4178 5967 | pub fn new(
|
4179 - | foo: ::std::option::Option<::std::string::String>,
|
4180 5968 | blob: ::aws_smithy_http_server_python::types::ByteStream,
|
5969 + | foo: ::std::option::Option<::std::string::String>,
|
4181 5970 | ) -> Self {
|
4182 - | Self { foo, blob }
|
5971 + | Self { blob, foo }
|
4183 5972 | }
|
4184 5973 | fn __repr__(&self) -> String {
|
4185 5974 | format!("{self:?}")
|
4186 5975 | }
|
4187 5976 | fn __str__(&self) -> String {
|
4188 5977 | format!("{self:?}")
|
4189 5978 | }
|
4190 5979 | }
|
5980 + | /* PythonServerStructureGenerator.kt:111 */
|
4191 5981 | impl<'source> ::pyo3::FromPyObject<'source>
|
4192 5982 | for std::boxed::Box<StreamingTraitsWithMediaTypeOutput>
|
4193 5983 | {
|
4194 5984 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
4195 5985 | ob.extract::<StreamingTraitsWithMediaTypeOutput>()
|
4196 5986 | .map(Box::new)
|
4197 5987 | }
|
4198 5988 | }
|
4199 5989 |
|
4200 5990 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<StreamingTraitsWithMediaTypeOutput> {
|
4201 5991 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
4202 5992 | (*self).into_py(py)
|
4203 5993 | }
|
4204 5994 | }
|
5995 + | /* ServerCodegenVisitor.kt:370 */
|
4205 5996 | impl StreamingTraitsWithMediaTypeOutput {
|
4206 - | /// Creates a new builder-style object to manufacture [`StreamingTraitsWithMediaTypeOutput`](crate::output::StreamingTraitsWithMediaTypeOutput).
|
5997 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`StreamingTraitsWithMediaTypeOutput`](crate::output::StreamingTraitsWithMediaTypeOutput).
|
5998 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4207 5999 | pub fn builder() -> crate::output::streaming_traits_with_media_type_output::Builder {
|
6000 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
4208 6001 | crate::output::streaming_traits_with_media_type_output::Builder::default()
|
6002 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4209 6003 | }
|
6004 + | /* ServerCodegenVisitor.kt:370 */
|
4210 6005 | }
|
4211 6006 |
|
6007 + | /* RustType.kt:516 */
|
4212 6008 | #[::pyo3::pyclass]
|
6009 + | /* PythonServerStructureGenerator.kt:63 */
|
4213 6010 | /// :rtype None:
|
6011 + | /* StructureGenerator.kt:197 */
|
4214 6012 | #[allow(missing_docs)] // documentation missing in model
|
6013 + | /* RustType.kt:516 */
|
4215 6014 | #[derive(
|
4216 6015 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
4217 6016 | )]
|
4218 - | pub struct StreamingTraitsRequireLengthOutput {}
|
6017 + | pub /* StructureGenerator.kt:201 */ struct StreamingTraitsRequireLengthOutput {/* StructureGenerator.kt:201 */}
|
6018 + | /* RustType.kt:516 */
|
4219 6019 | #[allow(clippy::new_without_default)]
|
6020 + | /* RustType.kt:516 */
|
4220 6021 | #[allow(clippy::too_many_arguments)]
|
6022 + | /* RustType.kt:516 */
|
4221 6023 | #[::pyo3::pymethods]
|
6024 + | /* PythonServerStructureGenerator.kt:88 */
|
4222 6025 | impl StreamingTraitsRequireLengthOutput {
|
4223 6026 | #[new]
|
4224 6027 | pub fn new() -> Self {
|
4225 6028 | Self {}
|
4226 6029 | }
|
4227 6030 | fn __repr__(&self) -> String {
|
4228 6031 | format!("{self:?}")
|
4229 6032 | }
|
4230 6033 | fn __str__(&self) -> String {
|
4231 6034 | format!("{self:?}")
|
4232 6035 | }
|
4233 6036 | }
|
6037 + | /* PythonServerStructureGenerator.kt:111 */
|
4234 6038 | impl<'source> ::pyo3::FromPyObject<'source>
|
4235 6039 | for std::boxed::Box<StreamingTraitsRequireLengthOutput>
|
4236 6040 | {
|
4237 6041 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
4238 6042 | ob.extract::<StreamingTraitsRequireLengthOutput>()
|
4239 6043 | .map(Box::new)
|
4240 6044 | }
|
4241 6045 | }
|
4242 6046 |
|
4243 6047 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<StreamingTraitsRequireLengthOutput> {
|
4244 6048 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
4245 6049 | (*self).into_py(py)
|
4246 6050 | }
|
4247 6051 | }
|
6052 + | /* ServerCodegenVisitor.kt:370 */
|
4248 6053 | impl StreamingTraitsRequireLengthOutput {
|
4249 - | /// Creates a new builder-style object to manufacture [`StreamingTraitsRequireLengthOutput`](crate::output::StreamingTraitsRequireLengthOutput).
|
6054 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`StreamingTraitsRequireLengthOutput`](crate::output::StreamingTraitsRequireLengthOutput).
|
6055 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4250 6056 | pub fn builder() -> crate::output::streaming_traits_require_length_output::Builder {
|
6057 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
4251 6058 | crate::output::streaming_traits_require_length_output::Builder::default()
|
6059 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4252 6060 | }
|
6061 + | /* ServerCodegenVisitor.kt:370 */
|
4253 6062 | }
|
4254 6063 |
|
6064 + | /* RustType.kt:516 */
|
4255 6065 | #[::pyo3::pyclass]
|
4256 - | /// :param foo typing.Optional\[str\]:
|
6066 + | /* PythonServerStructureGenerator.kt:63 */
|
4257 6067 | /// :param blob rest_json.types.ByteStream:
|
6068 + | /// :param foo typing.Optional\[str\]:
|
4258 6069 | /// :rtype None:
|
6070 + | /* StructureGenerator.kt:197 */
|
4259 6071 | #[allow(missing_docs)] // documentation missing in model
|
6072 + | /* RustType.kt:516 */
|
4260 6073 | #[derive(::std::clone::Clone, ::std::fmt::Debug)]
|
4261 - | pub struct StreamingTraitsOutput {
|
6074 + | pub /* StructureGenerator.kt:201 */ struct StreamingTraitsOutput {
|
6075 + | /* RustType.kt:516 */
|
4262 6076 | #[pyo3(get, set)]
|
6077 + | /* PythonServerStructureGenerator.kt:80 */
|
4263 6078 | /// :type typing.Optional\[str\]:
|
6079 + | /* StructureGenerator.kt:231 */
|
4264 6080 | #[allow(missing_docs)] // documentation missing in model
|
4265 6081 | pub foo: ::std::option::Option<::std::string::String>,
|
6082 + | /* RustType.kt:516 */
|
4266 6083 | #[pyo3(get, set)]
|
6084 + | /* PythonServerStructureGenerator.kt:80 */
|
4267 6085 | /// :type rest_json.types.ByteStream:
|
6086 + | /* StructureGenerator.kt:231 */
|
4268 6087 | #[allow(missing_docs)] // documentation missing in model
|
4269 6088 | pub blob: ::aws_smithy_http_server_python::types::ByteStream,
|
6089 + | /* StructureGenerator.kt:201 */
|
4270 6090 | }
|
6091 + | /* StructureGenerator.kt:135 */
|
4271 6092 | impl StreamingTraitsOutput {
|
6093 + | /* StructureGenerator.kt:231 */
|
4272 6094 | #[allow(missing_docs)] // documentation missing in model
|
6095 + | /* StructureGenerator.kt:166 */
|
4273 6096 | pub fn foo(&self) -> ::std::option::Option<&str> {
|
6097 + | /* StructureGenerator.kt:169 */
|
4274 6098 | self.foo.as_deref()
|
6099 + | /* StructureGenerator.kt:166 */
|
4275 6100 | }
|
6101 + | /* StructureGenerator.kt:231 */
|
4276 6102 | #[allow(missing_docs)] // documentation missing in model
|
6103 + | /* StructureGenerator.kt:166 */
|
4277 6104 | pub fn blob(&self) -> &::aws_smithy_http_server_python::types::ByteStream {
|
6105 + | /* StructureGenerator.kt:172 */
|
4278 6106 | &self.blob
|
6107 + | /* StructureGenerator.kt:166 */
|
4279 6108 | }
|
6109 + | /* StructureGenerator.kt:135 */
|
4280 6110 | }
|
6111 + | /* RustType.kt:516 */
|
4281 6112 | #[allow(clippy::new_without_default)]
|
6113 + | /* RustType.kt:516 */
|
4282 6114 | #[allow(clippy::too_many_arguments)]
|
6115 + | /* RustType.kt:516 */
|
4283 6116 | #[::pyo3::pymethods]
|
6117 + | /* PythonServerStructureGenerator.kt:88 */
|
4284 6118 | impl StreamingTraitsOutput {
|
4285 6119 | #[new]
|
4286 6120 | pub fn new(
|
4287 - | foo: ::std::option::Option<::std::string::String>,
|
4288 6121 | blob: ::aws_smithy_http_server_python::types::ByteStream,
|
6122 + | foo: ::std::option::Option<::std::string::String>,
|
4289 6123 | ) -> Self {
|
4290 - | Self { foo, blob }
|
6124 + | Self { blob, foo }
|
4291 6125 | }
|
4292 6126 | fn __repr__(&self) -> String {
|
4293 6127 | format!("{self:?}")
|
4294 6128 | }
|
4295 6129 | fn __str__(&self) -> String {
|
4296 6130 | format!("{self:?}")
|
4297 6131 | }
|
4298 6132 | }
|
6133 + | /* PythonServerStructureGenerator.kt:111 */
|
4299 6134 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<StreamingTraitsOutput> {
|
4300 6135 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
4301 6136 | ob.extract::<StreamingTraitsOutput>().map(Box::new)
|
4302 6137 | }
|
4303 6138 | }
|
4304 6139 |
|
4305 6140 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<StreamingTraitsOutput> {
|
4306 6141 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
4307 6142 | (*self).into_py(py)
|
4308 6143 | }
|
4309 6144 | }
|
6145 + | /* ServerCodegenVisitor.kt:370 */
|
4310 6146 | impl StreamingTraitsOutput {
|
4311 - | /// Creates a new builder-style object to manufacture [`StreamingTraitsOutput`](crate::output::StreamingTraitsOutput).
|
6147 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`StreamingTraitsOutput`](crate::output::StreamingTraitsOutput).
|
6148 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4312 6149 | pub fn builder() -> crate::output::streaming_traits_output::Builder {
|
6150 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
4313 6151 | crate::output::streaming_traits_output::Builder::default()
|
6152 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4314 6153 | }
|
6154 + | /* ServerCodegenVisitor.kt:370 */
|
4315 6155 | }
|
4316 6156 |
|
6157 + | /* RustType.kt:516 */
|
4317 6158 | #[::pyo3::pyclass]
|
6159 + | /* PythonServerStructureGenerator.kt:63 */
|
4318 6160 | /// :param status typing.Optional\[int\]:
|
4319 6161 | /// :rtype None:
|
6162 + | /* StructureGenerator.kt:197 */
|
4320 6163 | #[allow(missing_docs)] // documentation missing in model
|
6164 + | /* RustType.kt:516 */
|
4321 6165 | #[derive(
|
4322 6166 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
4323 6167 | )]
|
4324 - | pub struct HttpResponseCodeOutput {
|
6168 + | pub /* StructureGenerator.kt:201 */ struct HttpResponseCodeOutput {
|
6169 + | /* RustType.kt:516 */
|
4325 6170 | #[pyo3(get, set)]
|
6171 + | /* PythonServerStructureGenerator.kt:80 */
|
4326 6172 | /// :type typing.Optional\[int\]:
|
6173 + | /* StructureGenerator.kt:231 */
|
4327 6174 | #[allow(missing_docs)] // documentation missing in model
|
4328 6175 | pub status: ::std::option::Option<i32>,
|
6176 + | /* StructureGenerator.kt:201 */
|
4329 6177 | }
|
6178 + | /* StructureGenerator.kt:135 */
|
4330 6179 | impl HttpResponseCodeOutput {
|
6180 + | /* StructureGenerator.kt:231 */
|
4331 6181 | #[allow(missing_docs)] // documentation missing in model
|
6182 + | /* StructureGenerator.kt:166 */
|
4332 6183 | pub fn status(&self) -> ::std::option::Option<i32> {
|
6184 + | /* StructureGenerator.kt:168 */
|
4333 6185 | self.status
|
6186 + | /* StructureGenerator.kt:166 */
|
4334 6187 | }
|
6188 + | /* StructureGenerator.kt:135 */
|
4335 6189 | }
|
6190 + | /* RustType.kt:516 */
|
4336 6191 | #[allow(clippy::new_without_default)]
|
6192 + | /* RustType.kt:516 */
|
4337 6193 | #[allow(clippy::too_many_arguments)]
|
6194 + | /* RustType.kt:516 */
|
4338 6195 | #[::pyo3::pymethods]
|
6196 + | /* PythonServerStructureGenerator.kt:88 */
|
4339 6197 | impl HttpResponseCodeOutput {
|
4340 6198 | #[new]
|
4341 6199 | pub fn new(status: ::std::option::Option<i32>) -> Self {
|
4342 6200 | Self { status }
|
4343 6201 | }
|
4344 6202 | fn __repr__(&self) -> String {
|
4345 6203 | format!("{self:?}")
|
4346 6204 | }
|
4347 6205 | fn __str__(&self) -> String {
|
4348 6206 | format!("{self:?}")
|
4349 6207 | }
|
4350 6208 | }
|
6209 + | /* PythonServerStructureGenerator.kt:111 */
|
4351 6210 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<HttpResponseCodeOutput> {
|
4352 6211 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
4353 6212 | ob.extract::<HttpResponseCodeOutput>().map(Box::new)
|
4354 6213 | }
|
4355 6214 | }
|
4356 6215 |
|
4357 6216 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<HttpResponseCodeOutput> {
|
4358 6217 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
4359 6218 | (*self).into_py(py)
|
4360 6219 | }
|
4361 6220 | }
|
6221 + | /* ServerCodegenVisitor.kt:370 */
|
4362 6222 | impl HttpResponseCodeOutput {
|
4363 - | /// Creates a new builder-style object to manufacture [`HttpResponseCodeOutput`](crate::output::HttpResponseCodeOutput).
|
6223 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`HttpResponseCodeOutput`](crate::output::HttpResponseCodeOutput).
|
6224 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4364 6225 | pub fn builder() -> crate::output::http_response_code_output::Builder {
|
6226 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
4365 6227 | crate::output::http_response_code_output::Builder::default()
|
6228 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4366 6229 | }
|
6230 + | /* ServerCodegenVisitor.kt:370 */
|
4367 6231 | }
|
4368 6232 |
|
6233 + | /* RustType.kt:516 */
|
4369 6234 | #[::pyo3::pyclass]
|
6235 + | /* PythonServerStructureGenerator.kt:63 */
|
4370 6236 | /// :param nested typing.Optional\[rest_json.model.UnionPayload\]:
|
4371 6237 | /// :rtype None:
|
6238 + | /* StructureGenerator.kt:197 */
|
4372 6239 | #[allow(missing_docs)] // documentation missing in model
|
6240 + | /* RustType.kt:516 */
|
4373 6241 | #[derive(
|
4374 6242 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
4375 6243 | )]
|
4376 - | pub struct HttpPayloadWithUnionOutput {
|
6244 + | pub /* StructureGenerator.kt:201 */ struct HttpPayloadWithUnionOutput {
|
6245 + | /* RustType.kt:516 */
|
4377 6246 | #[pyo3(get, set)]
|
6247 + | /* PythonServerStructureGenerator.kt:80 */
|
4378 6248 | /// :type typing.Optional\[rest_json.model.UnionPayload\]:
|
6249 + | /* StructureGenerator.kt:231 */
|
4379 6250 | #[allow(missing_docs)] // documentation missing in model
|
4380 6251 | pub nested: ::std::option::Option<crate::model::UnionPayload>,
|
6252 + | /* StructureGenerator.kt:201 */
|
4381 6253 | }
|
6254 + | /* StructureGenerator.kt:135 */
|
4382 6255 | impl HttpPayloadWithUnionOutput {
|
6256 + | /* StructureGenerator.kt:231 */
|
4383 6257 | #[allow(missing_docs)] // documentation missing in model
|
6258 + | /* StructureGenerator.kt:166 */
|
4384 6259 | pub fn nested(&self) -> ::std::option::Option<&crate::model::UnionPayload> {
|
6260 + | /* StructureGenerator.kt:170 */
|
4385 6261 | self.nested.as_ref()
|
6262 + | /* StructureGenerator.kt:166 */
|
4386 6263 | }
|
6264 + | /* StructureGenerator.kt:135 */
|
4387 6265 | }
|
6266 + | /* RustType.kt:516 */
|
4388 6267 | #[allow(clippy::new_without_default)]
|
6268 + | /* RustType.kt:516 */
|
4389 6269 | #[allow(clippy::too_many_arguments)]
|
6270 + | /* RustType.kt:516 */
|
4390 6271 | #[::pyo3::pymethods]
|
6272 + | /* PythonServerStructureGenerator.kt:88 */
|
4391 6273 | impl HttpPayloadWithUnionOutput {
|
4392 6274 | #[new]
|
4393 6275 | pub fn new(nested: ::std::option::Option<crate::model::UnionPayload>) -> Self {
|
4394 6276 | Self { nested }
|
4395 6277 | }
|
4396 6278 | fn __repr__(&self) -> String {
|
4397 6279 | format!("{self:?}")
|
4398 6280 | }
|
4399 6281 | fn __str__(&self) -> String {
|
4400 6282 | format!("{self:?}")
|
4401 6283 | }
|
4402 6284 | }
|
6285 + | /* PythonServerStructureGenerator.kt:111 */
|
4403 6286 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<HttpPayloadWithUnionOutput> {
|
4404 6287 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
4405 6288 | ob.extract::<HttpPayloadWithUnionOutput>().map(Box::new)
|
4406 6289 | }
|
4407 6290 | }
|
4408 6291 |
|
4409 6292 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<HttpPayloadWithUnionOutput> {
|
4410 6293 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
4411 6294 | (*self).into_py(py)
|
4412 6295 | }
|
4413 6296 | }
|
6297 + | /* ServerCodegenVisitor.kt:370 */
|
4414 6298 | impl HttpPayloadWithUnionOutput {
|
4415 - | /// Creates a new builder-style object to manufacture [`HttpPayloadWithUnionOutput`](crate::output::HttpPayloadWithUnionOutput).
|
6299 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`HttpPayloadWithUnionOutput`](crate::output::HttpPayloadWithUnionOutput).
|
6300 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4416 6301 | pub fn builder() -> crate::output::http_payload_with_union_output::Builder {
|
6302 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
4417 6303 | crate::output::http_payload_with_union_output::Builder::default()
|
6304 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4418 6305 | }
|
6306 + | /* ServerCodegenVisitor.kt:370 */
|
4419 6307 | }
|
4420 6308 |
|
6309 + | /* RustType.kt:516 */
|
4421 6310 | #[::pyo3::pyclass]
|
6311 + | /* PythonServerStructureGenerator.kt:63 */
|
4422 6312 | /// :param payload typing.Optional\[str\]:
|
4423 6313 | /// :rtype None:
|
6314 + | /* StructureGenerator.kt:197 */
|
4424 6315 | #[allow(missing_docs)] // documentation missing in model
|
6316 + | /* RustType.kt:516 */
|
4425 6317 | #[derive(
|
4426 6318 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
4427 6319 | )]
|
4428 - | pub struct HttpStringPayloadOutput {
|
6320 + | pub /* StructureGenerator.kt:201 */ struct HttpStringPayloadOutput {
|
6321 + | /* RustType.kt:516 */
|
4429 6322 | #[pyo3(get, set)]
|
6323 + | /* PythonServerStructureGenerator.kt:80 */
|
4430 6324 | /// :type typing.Optional\[str\]:
|
6325 + | /* StructureGenerator.kt:231 */
|
4431 6326 | #[allow(missing_docs)] // documentation missing in model
|
4432 6327 | pub payload: ::std::option::Option<::std::string::String>,
|
6328 + | /* StructureGenerator.kt:201 */
|
4433 6329 | }
|
6330 + | /* StructureGenerator.kt:135 */
|
4434 6331 | impl HttpStringPayloadOutput {
|
6332 + | /* StructureGenerator.kt:231 */
|
4435 6333 | #[allow(missing_docs)] // documentation missing in model
|
6334 + | /* StructureGenerator.kt:166 */
|
4436 6335 | pub fn payload(&self) -> ::std::option::Option<&str> {
|
6336 + | /* StructureGenerator.kt:169 */
|
4437 6337 | self.payload.as_deref()
|
6338 + | /* StructureGenerator.kt:166 */
|
4438 6339 | }
|
6340 + | /* StructureGenerator.kt:135 */
|
4439 6341 | }
|
6342 + | /* RustType.kt:516 */
|
4440 6343 | #[allow(clippy::new_without_default)]
|
6344 + | /* RustType.kt:516 */
|
4441 6345 | #[allow(clippy::too_many_arguments)]
|
6346 + | /* RustType.kt:516 */
|
4442 6347 | #[::pyo3::pymethods]
|
6348 + | /* PythonServerStructureGenerator.kt:88 */
|
4443 6349 | impl HttpStringPayloadOutput {
|
4444 6350 | #[new]
|
4445 6351 | pub fn new(payload: ::std::option::Option<::std::string::String>) -> Self {
|
4446 6352 | Self { payload }
|
4447 6353 | }
|
4448 6354 | fn __repr__(&self) -> String {
|
4449 6355 | format!("{self:?}")
|
4450 6356 | }
|
4451 6357 | fn __str__(&self) -> String {
|
4452 6358 | format!("{self:?}")
|
4453 6359 | }
|
4454 6360 | }
|
6361 + | /* PythonServerStructureGenerator.kt:111 */
|
4455 6362 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<HttpStringPayloadOutput> {
|
4456 6363 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
4457 6364 | ob.extract::<HttpStringPayloadOutput>().map(Box::new)
|
4458 6365 | }
|
4459 6366 | }
|
4460 6367 |
|
4461 6368 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<HttpStringPayloadOutput> {
|
4462 6369 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
4463 6370 | (*self).into_py(py)
|
4464 6371 | }
|
4465 6372 | }
|
6373 + | /* ServerCodegenVisitor.kt:370 */
|
4466 6374 | impl HttpStringPayloadOutput {
|
4467 - | /// Creates a new builder-style object to manufacture [`HttpStringPayloadOutput`](crate::output::HttpStringPayloadOutput).
|
6375 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`HttpStringPayloadOutput`](crate::output::HttpStringPayloadOutput).
|
6376 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4468 6377 | pub fn builder() -> crate::output::http_string_payload_output::Builder {
|
6378 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
4469 6379 | crate::output::http_string_payload_output::Builder::default()
|
6380 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4470 6381 | }
|
6382 + | /* ServerCodegenVisitor.kt:370 */
|
4471 6383 | }
|
4472 6384 |
|
6385 + | /* RustType.kt:516 */
|
4473 6386 | #[::pyo3::pyclass]
|
6387 + | /* PythonServerStructureGenerator.kt:63 */
|
4474 6388 | /// :param payload typing.Optional\[rest_json.model.StringEnum\]:
|
4475 6389 | /// :rtype None:
|
6390 + | /* StructureGenerator.kt:197 */
|
4476 6391 | #[allow(missing_docs)] // documentation missing in model
|
6392 + | /* RustType.kt:516 */
|
4477 6393 | #[derive(
|
4478 6394 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
4479 6395 | )]
|
4480 - | pub struct HttpEnumPayloadOutput {
|
6396 + | pub /* StructureGenerator.kt:201 */ struct HttpEnumPayloadOutput {
|
6397 + | /* RustType.kt:516 */
|
4481 6398 | #[pyo3(get, set)]
|
6399 + | /* PythonServerStructureGenerator.kt:80 */
|
4482 6400 | /// :type typing.Optional\[rest_json.model.StringEnum\]:
|
6401 + | /* StructureGenerator.kt:231 */
|
4483 6402 | #[allow(missing_docs)] // documentation missing in model
|
4484 6403 | pub payload: ::std::option::Option<crate::model::StringEnum>,
|
6404 + | /* StructureGenerator.kt:201 */
|
4485 6405 | }
|
6406 + | /* StructureGenerator.kt:135 */
|
4486 6407 | impl HttpEnumPayloadOutput {
|
6408 + | /* StructureGenerator.kt:231 */
|
4487 6409 | #[allow(missing_docs)] // documentation missing in model
|
6410 + | /* StructureGenerator.kt:166 */
|
4488 6411 | pub fn payload(&self) -> ::std::option::Option<&crate::model::StringEnum> {
|
6412 + | /* StructureGenerator.kt:170 */
|
4489 6413 | self.payload.as_ref()
|
6414 + | /* StructureGenerator.kt:166 */
|
4490 6415 | }
|
6416 + | /* StructureGenerator.kt:135 */
|
4491 6417 | }
|
6418 + | /* RustType.kt:516 */
|
4492 6419 | #[allow(clippy::new_without_default)]
|
6420 + | /* RustType.kt:516 */
|
4493 6421 | #[allow(clippy::too_many_arguments)]
|
6422 + | /* RustType.kt:516 */
|
4494 6423 | #[::pyo3::pymethods]
|
6424 + | /* PythonServerStructureGenerator.kt:88 */
|
4495 6425 | impl HttpEnumPayloadOutput {
|
4496 6426 | #[new]
|
4497 6427 | pub fn new(payload: ::std::option::Option<crate::model::StringEnum>) -> Self {
|
4498 6428 | Self { payload }
|
4499 6429 | }
|
4500 6430 | fn __repr__(&self) -> String {
|
4501 6431 | format!("{self:?}")
|
4502 6432 | }
|
4503 6433 | fn __str__(&self) -> String {
|
4504 6434 | format!("{self:?}")
|
4505 6435 | }
|
4506 6436 | }
|
6437 + | /* PythonServerStructureGenerator.kt:111 */
|
4507 6438 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<HttpEnumPayloadOutput> {
|
4508 6439 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
4509 6440 | ob.extract::<HttpEnumPayloadOutput>().map(Box::new)
|
4510 6441 | }
|
4511 6442 | }
|
4512 6443 |
|
4513 6444 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<HttpEnumPayloadOutput> {
|
4514 6445 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
4515 6446 | (*self).into_py(py)
|
4516 6447 | }
|
4517 6448 | }
|
6449 + | /* ServerCodegenVisitor.kt:370 */
|
4518 6450 | impl HttpEnumPayloadOutput {
|
4519 - | /// Creates a new builder-style object to manufacture [`HttpEnumPayloadOutput`](crate::output::HttpEnumPayloadOutput).
|
6451 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`HttpEnumPayloadOutput`](crate::output::HttpEnumPayloadOutput).
|
6452 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4520 6453 | pub fn builder() -> crate::output::http_enum_payload_output::Builder {
|
6454 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
4521 6455 | crate::output::http_enum_payload_output::Builder::default()
|
6456 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4522 6457 | }
|
6458 + | /* ServerCodegenVisitor.kt:370 */
|
4523 6459 | }
|
4524 6460 |
|
6461 + | /* RustType.kt:516 */
|
4525 6462 | #[::pyo3::pyclass]
|
6463 + | /* PythonServerStructureGenerator.kt:63 */
|
4526 6464 | /// :param nested typing.Optional\[rest_json.model.NestedPayload\]:
|
4527 6465 | /// :rtype None:
|
6466 + | /* StructureGenerator.kt:197 */
|
4528 6467 | #[allow(missing_docs)] // documentation missing in model
|
6468 + | /* RustType.kt:516 */
|
4529 6469 | #[derive(
|
4530 6470 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
4531 6471 | )]
|
4532 - | pub struct HttpPayloadWithStructureOutput {
|
6472 + | pub /* StructureGenerator.kt:201 */ struct HttpPayloadWithStructureOutput {
|
6473 + | /* RustType.kt:516 */
|
4533 6474 | #[pyo3(get, set)]
|
6475 + | /* PythonServerStructureGenerator.kt:80 */
|
4534 6476 | /// :type typing.Optional\[rest_json.model.NestedPayload\]:
|
6477 + | /* StructureGenerator.kt:231 */
|
4535 6478 | #[allow(missing_docs)] // documentation missing in model
|
4536 6479 | pub nested: ::std::option::Option<crate::model::NestedPayload>,
|
6480 + | /* StructureGenerator.kt:201 */
|
4537 6481 | }
|
6482 + | /* StructureGenerator.kt:135 */
|
4538 6483 | impl HttpPayloadWithStructureOutput {
|
6484 + | /* StructureGenerator.kt:231 */
|
4539 6485 | #[allow(missing_docs)] // documentation missing in model
|
6486 + | /* StructureGenerator.kt:166 */
|
4540 6487 | pub fn nested(&self) -> ::std::option::Option<&crate::model::NestedPayload> {
|
6488 + | /* StructureGenerator.kt:170 */
|
4541 6489 | self.nested.as_ref()
|
6490 + | /* StructureGenerator.kt:166 */
|
4542 6491 | }
|
6492 + | /* StructureGenerator.kt:135 */
|
4543 6493 | }
|
6494 + | /* RustType.kt:516 */
|
4544 6495 | #[allow(clippy::new_without_default)]
|
6496 + | /* RustType.kt:516 */
|
4545 6497 | #[allow(clippy::too_many_arguments)]
|
6498 + | /* RustType.kt:516 */
|
4546 6499 | #[::pyo3::pymethods]
|
6500 + | /* PythonServerStructureGenerator.kt:88 */
|
4547 6501 | impl HttpPayloadWithStructureOutput {
|
4548 6502 | #[new]
|
4549 6503 | pub fn new(nested: ::std::option::Option<crate::model::NestedPayload>) -> Self {
|
4550 6504 | Self { nested }
|
4551 6505 | }
|
4552 6506 | fn __repr__(&self) -> String {
|
4553 6507 | format!("{self:?}")
|
4554 6508 | }
|
4555 6509 | fn __str__(&self) -> String {
|
4556 6510 | format!("{self:?}")
|
4557 6511 | }
|
4558 6512 | }
|
6513 + | /* PythonServerStructureGenerator.kt:111 */
|
4559 6514 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<HttpPayloadWithStructureOutput> {
|
4560 6515 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
4561 6516 | ob.extract::<HttpPayloadWithStructureOutput>().map(Box::new)
|
4562 6517 | }
|
4563 6518 | }
|
4564 6519 |
|
4565 6520 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<HttpPayloadWithStructureOutput> {
|
4566 6521 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
4567 6522 | (*self).into_py(py)
|
4568 6523 | }
|
4569 6524 | }
|
6525 + | /* ServerCodegenVisitor.kt:370 */
|
4570 6526 | impl HttpPayloadWithStructureOutput {
|
4571 - | /// Creates a new builder-style object to manufacture [`HttpPayloadWithStructureOutput`](crate::output::HttpPayloadWithStructureOutput).
|
6527 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`HttpPayloadWithStructureOutput`](crate::output::HttpPayloadWithStructureOutput).
|
6528 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4572 6529 | pub fn builder() -> crate::output::http_payload_with_structure_output::Builder {
|
6530 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
4573 6531 | crate::output::http_payload_with_structure_output::Builder::default()
|
6532 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4574 6533 | }
|
6534 + | /* ServerCodegenVisitor.kt:370 */
|
4575 6535 | }
|
4576 6536 |
|
6537 + | /* RustType.kt:516 */
|
4577 6538 | #[::pyo3::pyclass]
|
6539 + | /* PythonServerStructureGenerator.kt:63 */
|
4578 6540 | /// :param foo typing.Optional\[str\]:
|
4579 6541 | /// :param blob typing.Optional\[rest_json.types.Blob\]:
|
4580 6542 | /// :rtype None:
|
6543 + | /* StructureGenerator.kt:197 */
|
4581 6544 | #[allow(missing_docs)] // documentation missing in model
|
6545 + | /* RustType.kt:516 */
|
4582 6546 | #[derive(
|
4583 6547 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
4584 6548 | )]
|
4585 - | pub struct HttpPayloadTraitsWithMediaTypeOutput {
|
6549 + | pub /* StructureGenerator.kt:201 */ struct HttpPayloadTraitsWithMediaTypeOutput {
|
6550 + | /* RustType.kt:516 */
|
4586 6551 | #[pyo3(get, set)]
|
6552 + | /* PythonServerStructureGenerator.kt:80 */
|
4587 6553 | /// :type typing.Optional\[str\]:
|
6554 + | /* StructureGenerator.kt:231 */
|
4588 6555 | #[allow(missing_docs)] // documentation missing in model
|
4589 6556 | pub foo: ::std::option::Option<::std::string::String>,
|
6557 + | /* RustType.kt:516 */
|
4590 6558 | #[pyo3(get, set)]
|
6559 + | /* PythonServerStructureGenerator.kt:80 */
|
4591 6560 | /// :type typing.Optional\[rest_json.types.Blob\]:
|
6561 + | /* StructureGenerator.kt:231 */
|
4592 6562 | #[allow(missing_docs)] // documentation missing in model
|
4593 6563 | pub blob: ::std::option::Option<::aws_smithy_http_server_python::types::Blob>,
|
6564 + | /* StructureGenerator.kt:201 */
|
4594 6565 | }
|
6566 + | /* StructureGenerator.kt:135 */
|
4595 6567 | impl HttpPayloadTraitsWithMediaTypeOutput {
|
6568 + | /* StructureGenerator.kt:231 */
|
4596 6569 | #[allow(missing_docs)] // documentation missing in model
|
6570 + | /* StructureGenerator.kt:166 */
|
4597 6571 | pub fn foo(&self) -> ::std::option::Option<&str> {
|
6572 + | /* StructureGenerator.kt:169 */
|
4598 6573 | self.foo.as_deref()
|
6574 + | /* StructureGenerator.kt:166 */
|
4599 6575 | }
|
6576 + | /* StructureGenerator.kt:231 */
|
4600 6577 | #[allow(missing_docs)] // documentation missing in model
|
6578 + | /* StructureGenerator.kt:166 */
|
4601 6579 | pub fn blob(&self) -> ::std::option::Option<&::aws_smithy_http_server_python::types::Blob> {
|
6580 + | /* StructureGenerator.kt:170 */
|
4602 6581 | self.blob.as_ref()
|
6582 + | /* StructureGenerator.kt:166 */
|
4603 6583 | }
|
6584 + | /* StructureGenerator.kt:135 */
|
4604 6585 | }
|
6586 + | /* RustType.kt:516 */
|
4605 6587 | #[allow(clippy::new_without_default)]
|
6588 + | /* RustType.kt:516 */
|
4606 6589 | #[allow(clippy::too_many_arguments)]
|
6590 + | /* RustType.kt:516 */
|
4607 6591 | #[::pyo3::pymethods]
|
6592 + | /* PythonServerStructureGenerator.kt:88 */
|
4608 6593 | impl HttpPayloadTraitsWithMediaTypeOutput {
|
4609 6594 | #[new]
|
4610 6595 | pub fn new(
|
4611 6596 | foo: ::std::option::Option<::std::string::String>,
|
4612 6597 | blob: ::std::option::Option<::aws_smithy_http_server_python::types::Blob>,
|
4613 6598 | ) -> Self {
|
4614 6599 | Self { foo, blob }
|
4615 6600 | }
|
4616 6601 | fn __repr__(&self) -> String {
|
4617 6602 | format!("{self:?}")
|
4618 6603 | }
|
4619 6604 | fn __str__(&self) -> String {
|
4620 6605 | format!("{self:?}")
|
4621 6606 | }
|
4622 6607 | }
|
6608 + | /* PythonServerStructureGenerator.kt:111 */
|
4623 6609 | impl<'source> ::pyo3::FromPyObject<'source>
|
4624 6610 | for std::boxed::Box<HttpPayloadTraitsWithMediaTypeOutput>
|
4625 6611 | {
|
4626 6612 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
4627 6613 | ob.extract::<HttpPayloadTraitsWithMediaTypeOutput>()
|
4628 6614 | .map(Box::new)
|
4629 6615 | }
|
4630 6616 | }
|
4631 6617 |
|
4632 6618 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<HttpPayloadTraitsWithMediaTypeOutput> {
|
4633 6619 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
4634 6620 | (*self).into_py(py)
|
4635 6621 | }
|
4636 6622 | }
|
6623 + | /* ServerCodegenVisitor.kt:370 */
|
4637 6624 | impl HttpPayloadTraitsWithMediaTypeOutput {
|
4638 - | /// Creates a new builder-style object to manufacture [`HttpPayloadTraitsWithMediaTypeOutput`](crate::output::HttpPayloadTraitsWithMediaTypeOutput).
|
6625 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`HttpPayloadTraitsWithMediaTypeOutput`](crate::output::HttpPayloadTraitsWithMediaTypeOutput).
|
6626 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4639 6627 | pub fn builder() -> crate::output::http_payload_traits_with_media_type_output::Builder {
|
6628 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
4640 6629 | crate::output::http_payload_traits_with_media_type_output::Builder::default()
|
6630 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4641 6631 | }
|
6632 + | /* ServerCodegenVisitor.kt:370 */
|
4642 6633 | }
|
4643 6634 |
|
6635 + | /* RustType.kt:516 */
|
4644 6636 | #[::pyo3::pyclass]
|
6637 + | /* PythonServerStructureGenerator.kt:63 */
|
4645 6638 | /// :param foo typing.Optional\[str\]:
|
4646 6639 | /// :param blob typing.Optional\[rest_json.types.Blob\]:
|
4647 6640 | /// :rtype None:
|
6641 + | /* StructureGenerator.kt:197 */
|
4648 6642 | #[allow(missing_docs)] // documentation missing in model
|
6643 + | /* RustType.kt:516 */
|
4649 6644 | #[derive(
|
4650 6645 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
4651 6646 | )]
|
4652 - | pub struct HttpPayloadTraitsOutput {
|
6647 + | pub /* StructureGenerator.kt:201 */ struct HttpPayloadTraitsOutput {
|
6648 + | /* RustType.kt:516 */
|
4653 6649 | #[pyo3(get, set)]
|
6650 + | /* PythonServerStructureGenerator.kt:80 */
|
4654 6651 | /// :type typing.Optional\[str\]:
|
6652 + | /* StructureGenerator.kt:231 */
|
4655 6653 | #[allow(missing_docs)] // documentation missing in model
|
4656 6654 | pub foo: ::std::option::Option<::std::string::String>,
|
6655 + | /* RustType.kt:516 */
|
4657 6656 | #[pyo3(get, set)]
|
6657 + | /* PythonServerStructureGenerator.kt:80 */
|
4658 6658 | /// :type typing.Optional\[rest_json.types.Blob\]:
|
6659 + | /* StructureGenerator.kt:231 */
|
4659 6660 | #[allow(missing_docs)] // documentation missing in model
|
4660 6661 | pub blob: ::std::option::Option<::aws_smithy_http_server_python::types::Blob>,
|
6662 + | /* StructureGenerator.kt:201 */
|
4661 6663 | }
|
6664 + | /* StructureGenerator.kt:135 */
|
4662 6665 | impl HttpPayloadTraitsOutput {
|
6666 + | /* StructureGenerator.kt:231 */
|
4663 6667 | #[allow(missing_docs)] // documentation missing in model
|
6668 + | /* StructureGenerator.kt:166 */
|
4664 6669 | pub fn foo(&self) -> ::std::option::Option<&str> {
|
6670 + | /* StructureGenerator.kt:169 */
|
4665 6671 | self.foo.as_deref()
|
6672 + | /* StructureGenerator.kt:166 */
|
4666 6673 | }
|
6674 + | /* StructureGenerator.kt:231 */
|
4667 6675 | #[allow(missing_docs)] // documentation missing in model
|
6676 + | /* StructureGenerator.kt:166 */
|
4668 6677 | pub fn blob(&self) -> ::std::option::Option<&::aws_smithy_http_server_python::types::Blob> {
|
6678 + | /* StructureGenerator.kt:170 */
|
4669 6679 | self.blob.as_ref()
|
6680 + | /* StructureGenerator.kt:166 */
|
4670 6681 | }
|
6682 + | /* StructureGenerator.kt:135 */
|
4671 6683 | }
|
6684 + | /* RustType.kt:516 */
|
4672 6685 | #[allow(clippy::new_without_default)]
|
6686 + | /* RustType.kt:516 */
|
4673 6687 | #[allow(clippy::too_many_arguments)]
|
6688 + | /* RustType.kt:516 */
|
4674 6689 | #[::pyo3::pymethods]
|
6690 + | /* PythonServerStructureGenerator.kt:88 */
|
4675 6691 | impl HttpPayloadTraitsOutput {
|
4676 6692 | #[new]
|
4677 6693 | pub fn new(
|
4678 6694 | foo: ::std::option::Option<::std::string::String>,
|
4679 6695 | blob: ::std::option::Option<::aws_smithy_http_server_python::types::Blob>,
|
4680 6696 | ) -> Self {
|
4681 6697 | Self { foo, blob }
|
4682 6698 | }
|
4683 6699 | fn __repr__(&self) -> String {
|
4684 6700 | format!("{self:?}")
|
4685 6701 | }
|
4686 6702 | fn __str__(&self) -> String {
|
4687 6703 | format!("{self:?}")
|
4688 6704 | }
|
4689 6705 | }
|
6706 + | /* PythonServerStructureGenerator.kt:111 */
|
4690 6707 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<HttpPayloadTraitsOutput> {
|
4691 6708 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
4692 6709 | ob.extract::<HttpPayloadTraitsOutput>().map(Box::new)
|
4693 6710 | }
|
4694 6711 | }
|
4695 6712 |
|
4696 6713 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<HttpPayloadTraitsOutput> {
|
4697 6714 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
4698 6715 | (*self).into_py(py)
|
4699 6716 | }
|
4700 6717 | }
|
6718 + | /* ServerCodegenVisitor.kt:370 */
|
4701 6719 | impl HttpPayloadTraitsOutput {
|
4702 - | /// Creates a new builder-style object to manufacture [`HttpPayloadTraitsOutput`](crate::output::HttpPayloadTraitsOutput).
|
6720 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`HttpPayloadTraitsOutput`](crate::output::HttpPayloadTraitsOutput).
|
6721 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4703 6722 | pub fn builder() -> crate::output::http_payload_traits_output::Builder {
|
6723 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
4704 6724 | crate::output::http_payload_traits_output::Builder::default()
|
6725 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4705 6726 | }
|
6727 + | /* ServerCodegenVisitor.kt:370 */
|
4706 6728 | }
|
4707 6729 |
|
6730 + | /* RustType.kt:516 */
|
4708 6731 | #[::pyo3::pyclass]
|
6732 + | /* PythonServerStructureGenerator.kt:63 */
|
4709 6733 | /// :param prefix_headers typing.Optional\[typing.Dict\[str, str\]\]:
|
4710 6734 | /// :rtype None:
|
6735 + | /* StructureGenerator.kt:197 */
|
4711 6736 | #[allow(missing_docs)] // documentation missing in model
|
6737 + | /* RustType.kt:516 */
|
4712 6738 | #[derive(::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug)]
|
4713 - | pub struct HttpPrefixHeadersInResponseOutput {
|
6739 + | pub /* StructureGenerator.kt:201 */ struct HttpPrefixHeadersInResponseOutput {
|
6740 + | /* RustType.kt:516 */
|
4714 6741 | #[pyo3(get, set)]
|
6742 + | /* PythonServerStructureGenerator.kt:80 */
|
4715 6743 | /// :type typing.Optional\[typing.Dict\[str, str\]\]:
|
6744 + | /* StructureGenerator.kt:231 */
|
4716 6745 | #[allow(missing_docs)] // documentation missing in model
|
4717 6746 | pub prefix_headers: ::std::option::Option<
|
4718 6747 | ::std::collections::HashMap<::std::string::String, ::std::string::String>,
|
4719 6748 | >,
|
6749 + | /* StructureGenerator.kt:201 */
|
4720 6750 | }
|
6751 + | /* StructureGenerator.kt:135 */
|
4721 6752 | impl HttpPrefixHeadersInResponseOutput {
|
6753 + | /* StructureGenerator.kt:231 */
|
4722 6754 | #[allow(missing_docs)] // documentation missing in model
|
6755 + | /* StructureGenerator.kt:166 */
|
4723 6756 | pub fn prefix_headers(
|
4724 6757 | &self,
|
4725 6758 | ) -> ::std::option::Option<
|
4726 6759 | &::std::collections::HashMap<::std::string::String, ::std::string::String>,
|
4727 6760 | > {
|
6761 + | /* StructureGenerator.kt:170 */
|
4728 6762 | self.prefix_headers.as_ref()
|
6763 + | /* StructureGenerator.kt:166 */
|
4729 6764 | }
|
6765 + | /* StructureGenerator.kt:135 */
|
4730 6766 | }
|
6767 + | /* RustType.kt:516 */
|
4731 6768 | #[allow(clippy::new_without_default)]
|
6769 + | /* RustType.kt:516 */
|
4732 6770 | #[allow(clippy::too_many_arguments)]
|
6771 + | /* RustType.kt:516 */
|
4733 6772 | #[::pyo3::pymethods]
|
6773 + | /* PythonServerStructureGenerator.kt:88 */
|
4734 6774 | impl HttpPrefixHeadersInResponseOutput {
|
4735 6775 | #[new]
|
4736 6776 | pub fn new(
|
4737 6777 | prefix_headers: ::std::option::Option<
|
4738 6778 | ::std::collections::HashMap<::std::string::String, ::std::string::String>,
|
4739 6779 | >,
|
4740 6780 | ) -> Self {
|
4741 6781 | Self { prefix_headers }
|
4742 6782 | }
|
4743 6783 | fn __repr__(&self) -> String {
|
4744 6784 | format!("{self:?}")
|
4745 6785 | }
|
4746 6786 | fn __str__(&self) -> String {
|
4747 6787 | format!("{self:?}")
|
4748 6788 | }
|
4749 6789 | }
|
6790 + | /* PythonServerStructureGenerator.kt:111 */
|
4750 6791 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<HttpPrefixHeadersInResponseOutput> {
|
4751 6792 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
4752 6793 | ob.extract::<HttpPrefixHeadersInResponseOutput>()
|
4753 6794 | .map(Box::new)
|
4754 6795 | }
|
4755 6796 | }
|
4756 6797 |
|
4757 6798 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<HttpPrefixHeadersInResponseOutput> {
|
4758 6799 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
4759 6800 | (*self).into_py(py)
|
4760 6801 | }
|
4761 6802 | }
|
6803 + | /* ServerCodegenVisitor.kt:370 */
|
4762 6804 | impl HttpPrefixHeadersInResponseOutput {
|
4763 - | /// Creates a new builder-style object to manufacture [`HttpPrefixHeadersInResponseOutput`](crate::output::HttpPrefixHeadersInResponseOutput).
|
6805 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`HttpPrefixHeadersInResponseOutput`](crate::output::HttpPrefixHeadersInResponseOutput).
|
6806 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4764 6807 | pub fn builder() -> crate::output::http_prefix_headers_in_response_output::Builder {
|
6808 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
4765 6809 | crate::output::http_prefix_headers_in_response_output::Builder::default()
|
6810 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4766 6811 | }
|
6812 + | /* ServerCodegenVisitor.kt:370 */
|
4767 6813 | }
|
4768 6814 |
|
6815 + | /* RustType.kt:516 */
|
4769 6816 | #[::pyo3::pyclass]
|
6817 + | /* PythonServerStructureGenerator.kt:63 */
|
4770 6818 | /// :param foo typing.Optional\[str\]:
|
4771 6819 | /// :param foo_map typing.Optional\[typing.Dict\[str, str\]\]:
|
4772 6820 | /// :rtype None:
|
6821 + | /* StructureGenerator.kt:197 */
|
4773 6822 | #[allow(missing_docs)] // documentation missing in model
|
6823 + | /* RustType.kt:516 */
|
4774 6824 | #[derive(::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug)]
|
4775 - | pub struct HttpPrefixHeadersOutput {
|
6825 + | pub /* StructureGenerator.kt:201 */ struct HttpPrefixHeadersOutput {
|
6826 + | /* RustType.kt:516 */
|
4776 6827 | #[pyo3(get, set)]
|
6828 + | /* PythonServerStructureGenerator.kt:80 */
|
4777 6829 | /// :type typing.Optional\[str\]:
|
6830 + | /* StructureGenerator.kt:231 */
|
4778 6831 | #[allow(missing_docs)] // documentation missing in model
|
4779 6832 | pub foo: ::std::option::Option<::std::string::String>,
|
6833 + | /* RustType.kt:516 */
|
4780 6834 | #[pyo3(get, set)]
|
6835 + | /* PythonServerStructureGenerator.kt:80 */
|
4781 6836 | /// :type typing.Optional\[typing.Dict\[str, str\]\]:
|
6837 + | /* StructureGenerator.kt:231 */
|
4782 6838 | #[allow(missing_docs)] // documentation missing in model
|
4783 6839 | pub foo_map: ::std::option::Option<
|
4784 6840 | ::std::collections::HashMap<::std::string::String, ::std::string::String>,
|
4785 6841 | >,
|
6842 + | /* StructureGenerator.kt:201 */
|
4786 6843 | }
|
6844 + | /* StructureGenerator.kt:135 */
|
4787 6845 | impl HttpPrefixHeadersOutput {
|
6846 + | /* StructureGenerator.kt:231 */
|
4788 6847 | #[allow(missing_docs)] // documentation missing in model
|
6848 + | /* StructureGenerator.kt:166 */
|
4789 6849 | pub fn foo(&self) -> ::std::option::Option<&str> {
|
6850 + | /* StructureGenerator.kt:169 */
|
4790 6851 | self.foo.as_deref()
|
6852 + | /* StructureGenerator.kt:166 */
|
4791 6853 | }
|
6854 + | /* StructureGenerator.kt:231 */
|
4792 6855 | #[allow(missing_docs)] // documentation missing in model
|
6856 + | /* StructureGenerator.kt:166 */
|
4793 6857 | pub fn foo_map(
|
4794 6858 | &self,
|
4795 6859 | ) -> ::std::option::Option<
|
4796 6860 | &::std::collections::HashMap<::std::string::String, ::std::string::String>,
|
4797 6861 | > {
|
6862 + | /* StructureGenerator.kt:170 */
|
4798 6863 | self.foo_map.as_ref()
|
6864 + | /* StructureGenerator.kt:166 */
|
4799 6865 | }
|
6866 + | /* StructureGenerator.kt:135 */
|
4800 6867 | }
|
6868 + | /* RustType.kt:516 */
|
4801 6869 | #[allow(clippy::new_without_default)]
|
6870 + | /* RustType.kt:516 */
|
4802 6871 | #[allow(clippy::too_many_arguments)]
|
6872 + | /* RustType.kt:516 */
|
4803 6873 | #[::pyo3::pymethods]
|
6874 + | /* PythonServerStructureGenerator.kt:88 */
|
4804 6875 | impl HttpPrefixHeadersOutput {
|
4805 6876 | #[new]
|
4806 6877 | pub fn new(
|
4807 6878 | foo: ::std::option::Option<::std::string::String>,
|
4808 6879 | foo_map: ::std::option::Option<
|
4809 6880 | ::std::collections::HashMap<::std::string::String, ::std::string::String>,
|
4810 6881 | >,
|
4811 6882 | ) -> Self {
|
4812 6883 | Self { foo, foo_map }
|
4813 6884 | }
|
4814 6885 | fn __repr__(&self) -> String {
|
4815 6886 | format!("{self:?}")
|
4816 6887 | }
|
4817 6888 | fn __str__(&self) -> String {
|
4818 6889 | format!("{self:?}")
|
4819 6890 | }
|
4820 6891 | }
|
6892 + | /* PythonServerStructureGenerator.kt:111 */
|
4821 6893 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<HttpPrefixHeadersOutput> {
|
4822 6894 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
4823 6895 | ob.extract::<HttpPrefixHeadersOutput>().map(Box::new)
|
4824 6896 | }
|
4825 6897 | }
|
4826 6898 |
|
4827 6899 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<HttpPrefixHeadersOutput> {
|
4828 6900 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
4829 6901 | (*self).into_py(py)
|
4830 6902 | }
|
4831 6903 | }
|
6904 + | /* ServerCodegenVisitor.kt:370 */
|
4832 6905 | impl HttpPrefixHeadersOutput {
|
4833 - | /// Creates a new builder-style object to manufacture [`HttpPrefixHeadersOutput`](crate::output::HttpPrefixHeadersOutput).
|
6906 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`HttpPrefixHeadersOutput`](crate::output::HttpPrefixHeadersOutput).
|
6907 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4834 6908 | pub fn builder() -> crate::output::http_prefix_headers_output::Builder {
|
6909 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
4835 6910 | crate::output::http_prefix_headers_output::Builder::default()
|
6911 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4836 6912 | }
|
6913 + | /* ServerCodegenVisitor.kt:370 */
|
4837 6914 | }
|
4838 6915 |
|
6916 + | /* RustType.kt:516 */
|
4839 6917 | #[::pyo3::pyclass]
|
6918 + | /* PythonServerStructureGenerator.kt:63 */
|
4840 6919 | /// :rtype None:
|
6920 + | /* StructureGenerator.kt:197 */
|
4841 6921 | #[allow(missing_docs)] // documentation missing in model
|
6922 + | /* RustType.kt:516 */
|
4842 6923 | #[derive(
|
4843 6924 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
4844 6925 | )]
|
4845 - | pub struct QueryParamsAsStringListMapOutput {}
|
6926 + | pub /* StructureGenerator.kt:201 */ struct QueryParamsAsStringListMapOutput {/* StructureGenerator.kt:201 */}
|
6927 + | /* RustType.kt:516 */
|
4846 6928 | #[allow(clippy::new_without_default)]
|
6929 + | /* RustType.kt:516 */
|
4847 6930 | #[allow(clippy::too_many_arguments)]
|
6931 + | /* RustType.kt:516 */
|
4848 6932 | #[::pyo3::pymethods]
|
6933 + | /* PythonServerStructureGenerator.kt:88 */
|
4849 6934 | impl QueryParamsAsStringListMapOutput {
|
4850 6935 | #[new]
|
4851 6936 | pub fn new() -> Self {
|
4852 6937 | Self {}
|
4853 6938 | }
|
4854 6939 | fn __repr__(&self) -> String {
|
4855 6940 | format!("{self:?}")
|
4856 6941 | }
|
4857 6942 | fn __str__(&self) -> String {
|
4858 6943 | format!("{self:?}")
|
4859 6944 | }
|
4860 6945 | }
|
6946 + | /* PythonServerStructureGenerator.kt:111 */
|
4861 6947 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<QueryParamsAsStringListMapOutput> {
|
4862 6948 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
4863 6949 | ob.extract::<QueryParamsAsStringListMapOutput>()
|
4864 6950 | .map(Box::new)
|
4865 6951 | }
|
4866 6952 | }
|
4867 6953 |
|
4868 6954 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<QueryParamsAsStringListMapOutput> {
|
4869 6955 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
4870 6956 | (*self).into_py(py)
|
4871 6957 | }
|
4872 6958 | }
|
6959 + | /* ServerCodegenVisitor.kt:370 */
|
4873 6960 | impl QueryParamsAsStringListMapOutput {
|
4874 - | /// Creates a new builder-style object to manufacture [`QueryParamsAsStringListMapOutput`](crate::output::QueryParamsAsStringListMapOutput).
|
6961 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`QueryParamsAsStringListMapOutput`](crate::output::QueryParamsAsStringListMapOutput).
|
6962 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4875 6963 | pub fn builder() -> crate::output::query_params_as_string_list_map_output::Builder {
|
6964 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
4876 6965 | crate::output::query_params_as_string_list_map_output::Builder::default()
|
6966 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4877 6967 | }
|
6968 + | /* ServerCodegenVisitor.kt:370 */
|
4878 6969 | }
|
4879 6970 |
|
6971 + | /* RustType.kt:516 */
|
4880 6972 | #[::pyo3::pyclass]
|
6973 + | /* PythonServerStructureGenerator.kt:63 */
|
4881 6974 | /// :rtype None:
|
6975 + | /* StructureGenerator.kt:197 */
|
4882 6976 | #[allow(missing_docs)] // documentation missing in model
|
6977 + | /* RustType.kt:516 */
|
4883 6978 | #[derive(
|
4884 6979 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
4885 6980 | )]
|
4886 - | pub struct QueryPrecedenceOutput {}
|
6981 + | pub /* StructureGenerator.kt:201 */ struct QueryPrecedenceOutput {/* StructureGenerator.kt:201 */}
|
6982 + | /* RustType.kt:516 */
|
4887 6983 | #[allow(clippy::new_without_default)]
|
6984 + | /* RustType.kt:516 */
|
4888 6985 | #[allow(clippy::too_many_arguments)]
|
6986 + | /* RustType.kt:516 */
|
4889 6987 | #[::pyo3::pymethods]
|
6988 + | /* PythonServerStructureGenerator.kt:88 */
|
4890 6989 | impl QueryPrecedenceOutput {
|
4891 6990 | #[new]
|
4892 6991 | pub fn new() -> Self {
|
4893 6992 | Self {}
|
4894 6993 | }
|
4895 6994 | fn __repr__(&self) -> String {
|
4896 6995 | format!("{self:?}")
|
4897 6996 | }
|
4898 6997 | fn __str__(&self) -> String {
|
4899 6998 | format!("{self:?}")
|
4900 6999 | }
|
4901 7000 | }
|
7001 + | /* PythonServerStructureGenerator.kt:111 */
|
4902 7002 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<QueryPrecedenceOutput> {
|
4903 7003 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
4904 7004 | ob.extract::<QueryPrecedenceOutput>().map(Box::new)
|
4905 7005 | }
|
4906 7006 | }
|
4907 7007 |
|
4908 7008 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<QueryPrecedenceOutput> {
|
4909 7009 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
4910 7010 | (*self).into_py(py)
|
4911 7011 | }
|
4912 7012 | }
|
7013 + | /* ServerCodegenVisitor.kt:370 */
|
4913 7014 | impl QueryPrecedenceOutput {
|
4914 - | /// Creates a new builder-style object to manufacture [`QueryPrecedenceOutput`](crate::output::QueryPrecedenceOutput).
|
7015 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`QueryPrecedenceOutput`](crate::output::QueryPrecedenceOutput).
|
7016 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4915 7017 | pub fn builder() -> crate::output::query_precedence_output::Builder {
|
7018 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
4916 7019 | crate::output::query_precedence_output::Builder::default()
|
7020 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4917 7021 | }
|
7022 + | /* ServerCodegenVisitor.kt:370 */
|
4918 7023 | }
|
4919 7024 |
|
7025 + | /* RustType.kt:516 */
|
4920 7026 | #[::pyo3::pyclass]
|
7027 + | /* PythonServerStructureGenerator.kt:63 */
|
4921 7028 | /// :rtype None:
|
7029 + | /* StructureGenerator.kt:197 */
|
4922 7030 | #[allow(missing_docs)] // documentation missing in model
|
7031 + | /* RustType.kt:516 */
|
4923 7032 | #[derive(
|
4924 7033 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
4925 7034 | )]
|
4926 - | pub struct QueryIdempotencyTokenAutoFillOutput {}
|
7035 + | pub /* StructureGenerator.kt:201 */ struct QueryIdempotencyTokenAutoFillOutput {/* StructureGenerator.kt:201 */}
|
7036 + | /* RustType.kt:516 */
|
4927 7037 | #[allow(clippy::new_without_default)]
|
7038 + | /* RustType.kt:516 */
|
4928 7039 | #[allow(clippy::too_many_arguments)]
|
7040 + | /* RustType.kt:516 */
|
4929 7041 | #[::pyo3::pymethods]
|
7042 + | /* PythonServerStructureGenerator.kt:88 */
|
4930 7043 | impl QueryIdempotencyTokenAutoFillOutput {
|
4931 7044 | #[new]
|
4932 7045 | pub fn new() -> Self {
|
4933 7046 | Self {}
|
4934 7047 | }
|
4935 7048 | fn __repr__(&self) -> String {
|
4936 7049 | format!("{self:?}")
|
4937 7050 | }
|
4938 7051 | fn __str__(&self) -> String {
|
4939 7052 | format!("{self:?}")
|
4940 7053 | }
|
4941 7054 | }
|
7055 + | /* PythonServerStructureGenerator.kt:111 */
|
4942 7056 | impl<'source> ::pyo3::FromPyObject<'source>
|
4943 7057 | for std::boxed::Box<QueryIdempotencyTokenAutoFillOutput>
|
4944 7058 | {
|
4945 7059 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
4946 7060 | ob.extract::<QueryIdempotencyTokenAutoFillOutput>()
|
4947 7061 | .map(Box::new)
|
4948 7062 | }
|
4949 7063 | }
|
4950 7064 |
|
4951 7065 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<QueryIdempotencyTokenAutoFillOutput> {
|
4952 7066 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
4953 7067 | (*self).into_py(py)
|
4954 7068 | }
|
4955 7069 | }
|
7070 + | /* ServerCodegenVisitor.kt:370 */
|
4956 7071 | impl QueryIdempotencyTokenAutoFillOutput {
|
4957 - | /// Creates a new builder-style object to manufacture [`QueryIdempotencyTokenAutoFillOutput`](crate::output::QueryIdempotencyTokenAutoFillOutput).
|
7072 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`QueryIdempotencyTokenAutoFillOutput`](crate::output::QueryIdempotencyTokenAutoFillOutput).
|
7073 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4958 7074 | pub fn builder() -> crate::output::query_idempotency_token_auto_fill_output::Builder {
|
7075 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
4959 7076 | crate::output::query_idempotency_token_auto_fill_output::Builder::default()
|
7077 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4960 7078 | }
|
7079 + | /* ServerCodegenVisitor.kt:370 */
|
4961 7080 | }
|
4962 7081 |
|
7082 + | /* RustType.kt:516 */
|
4963 7083 | #[::pyo3::pyclass]
|
7084 + | /* PythonServerStructureGenerator.kt:63 */
|
4964 7085 | /// :rtype None:
|
7086 + | /* StructureGenerator.kt:197 */
|
4965 7087 | #[allow(missing_docs)] // documentation missing in model
|
7088 + | /* RustType.kt:516 */
|
4966 7089 | #[derive(
|
4967 7090 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
4968 7091 | )]
|
4969 - | pub struct OmitsSerializingEmptyListsOutput {}
|
7092 + | pub /* StructureGenerator.kt:201 */ struct OmitsSerializingEmptyListsOutput {/* StructureGenerator.kt:201 */}
|
7093 + | /* RustType.kt:516 */
|
4970 7094 | #[allow(clippy::new_without_default)]
|
7095 + | /* RustType.kt:516 */
|
4971 7096 | #[allow(clippy::too_many_arguments)]
|
7097 + | /* RustType.kt:516 */
|
4972 7098 | #[::pyo3::pymethods]
|
7099 + | /* PythonServerStructureGenerator.kt:88 */
|
4973 7100 | impl OmitsSerializingEmptyListsOutput {
|
4974 7101 | #[new]
|
4975 7102 | pub fn new() -> Self {
|
4976 7103 | Self {}
|
4977 7104 | }
|
4978 7105 | fn __repr__(&self) -> String {
|
4979 7106 | format!("{self:?}")
|
4980 7107 | }
|
4981 7108 | fn __str__(&self) -> String {
|
4982 7109 | format!("{self:?}")
|
4983 7110 | }
|
4984 7111 | }
|
7112 + | /* PythonServerStructureGenerator.kt:111 */
|
4985 7113 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<OmitsSerializingEmptyListsOutput> {
|
4986 7114 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
4987 7115 | ob.extract::<OmitsSerializingEmptyListsOutput>()
|
4988 7116 | .map(Box::new)
|
4989 7117 | }
|
4990 7118 | }
|
4991 7119 |
|
4992 7120 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<OmitsSerializingEmptyListsOutput> {
|
4993 7121 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
4994 7122 | (*self).into_py(py)
|
4995 7123 | }
|
4996 7124 | }
|
7125 + | /* ServerCodegenVisitor.kt:370 */
|
4997 7126 | impl OmitsSerializingEmptyListsOutput {
|
4998 - | /// Creates a new builder-style object to manufacture [`OmitsSerializingEmptyListsOutput`](crate::output::OmitsSerializingEmptyListsOutput).
|
7127 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`OmitsSerializingEmptyListsOutput`](crate::output::OmitsSerializingEmptyListsOutput).
|
7128 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
4999 7129 | pub fn builder() -> crate::output::omits_serializing_empty_lists_output::Builder {
|
7130 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
5000 7131 | crate::output::omits_serializing_empty_lists_output::Builder::default()
|
7132 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
5001 7133 | }
|
7134 + | /* ServerCodegenVisitor.kt:370 */
|
5002 7135 | }
|
5003 7136 |
|
7137 + | /* RustType.kt:516 */
|
5004 7138 | #[::pyo3::pyclass]
|
7139 + | /* PythonServerStructureGenerator.kt:63 */
|
5005 7140 | /// :rtype None:
|
7141 + | /* StructureGenerator.kt:197 */
|
5006 7142 | #[allow(missing_docs)] // documentation missing in model
|
7143 + | /* RustType.kt:516 */
|
5007 7144 | #[derive(
|
5008 7145 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
5009 7146 | )]
|
5010 - | pub struct OmitsNullSerializesEmptyStringOutput {}
|
7147 + | pub /* StructureGenerator.kt:201 */ struct OmitsNullSerializesEmptyStringOutput {/* StructureGenerator.kt:201 */}
|
7148 + | /* RustType.kt:516 */
|
5011 7149 | #[allow(clippy::new_without_default)]
|
7150 + | /* RustType.kt:516 */
|
5012 7151 | #[allow(clippy::too_many_arguments)]
|
7152 + | /* RustType.kt:516 */
|
5013 7153 | #[::pyo3::pymethods]
|
7154 + | /* PythonServerStructureGenerator.kt:88 */
|
5014 7155 | impl OmitsNullSerializesEmptyStringOutput {
|
5015 7156 | #[new]
|
5016 7157 | pub fn new() -> Self {
|
5017 7158 | Self {}
|
5018 7159 | }
|
5019 7160 | fn __repr__(&self) -> String {
|
5020 7161 | format!("{self:?}")
|
5021 7162 | }
|
5022 7163 | fn __str__(&self) -> String {
|
5023 7164 | format!("{self:?}")
|
5024 7165 | }
|
5025 7166 | }
|
7167 + | /* PythonServerStructureGenerator.kt:111 */
|
5026 7168 | impl<'source> ::pyo3::FromPyObject<'source>
|
5027 7169 | for std::boxed::Box<OmitsNullSerializesEmptyStringOutput>
|
5028 7170 | {
|
5029 7171 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
5030 7172 | ob.extract::<OmitsNullSerializesEmptyStringOutput>()
|
5031 7173 | .map(Box::new)
|
5032 7174 | }
|
5033 7175 | }
|
5034 7176 |
|
5035 7177 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<OmitsNullSerializesEmptyStringOutput> {
|
5036 7178 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
5037 7179 | (*self).into_py(py)
|
5038 7180 | }
|
5039 7181 | }
|
7182 + | /* ServerCodegenVisitor.kt:370 */
|
5040 7183 | impl OmitsNullSerializesEmptyStringOutput {
|
5041 - | /// Creates a new builder-style object to manufacture [`OmitsNullSerializesEmptyStringOutput`](crate::output::OmitsNullSerializesEmptyStringOutput).
|
7184 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`OmitsNullSerializesEmptyStringOutput`](crate::output::OmitsNullSerializesEmptyStringOutput).
|
7185 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
5042 7186 | pub fn builder() -> crate::output::omits_null_serializes_empty_string_output::Builder {
|
7187 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
5043 7188 | crate::output::omits_null_serializes_empty_string_output::Builder::default()
|
7189 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
5044 7190 | }
|
7191 + | /* ServerCodegenVisitor.kt:370 */
|
5045 7192 | }
|
5046 7193 |
|
7194 + | /* RustType.kt:516 */
|
5047 7195 | #[::pyo3::pyclass]
|
7196 + | /* PythonServerStructureGenerator.kt:63 */
|
5048 7197 | /// :param baz typing.Optional\[str\]:
|
5049 7198 | /// :rtype None:
|
7199 + | /* StructureGenerator.kt:197 */
|
5050 7200 | #[allow(missing_docs)] // documentation missing in model
|
7201 + | /* RustType.kt:516 */
|
5051 7202 | #[derive(
|
5052 7203 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
5053 7204 | )]
|
5054 - | pub struct IgnoreQueryParamsInResponseOutput {
|
7205 + | pub /* StructureGenerator.kt:201 */ struct IgnoreQueryParamsInResponseOutput {
|
7206 + | /* RustType.kt:516 */
|
5055 7207 | #[pyo3(get, set)]
|
7208 + | /* PythonServerStructureGenerator.kt:80 */
|
5056 7209 | /// :type typing.Optional\[str\]:
|
7210 + | /* StructureGenerator.kt:231 */
|
5057 7211 | #[allow(missing_docs)] // documentation missing in model
|
5058 7212 | pub baz: ::std::option::Option<::std::string::String>,
|
7213 + | /* StructureGenerator.kt:201 */
|
5059 7214 | }
|
7215 + | /* StructureGenerator.kt:135 */
|
5060 7216 | impl IgnoreQueryParamsInResponseOutput {
|
7217 + | /* StructureGenerator.kt:231 */
|
5061 7218 | #[allow(missing_docs)] // documentation missing in model
|
7219 + | /* StructureGenerator.kt:166 */
|
5062 7220 | pub fn baz(&self) -> ::std::option::Option<&str> {
|
7221 + | /* StructureGenerator.kt:169 */
|
5063 7222 | self.baz.as_deref()
|
7223 + | /* StructureGenerator.kt:166 */
|
5064 7224 | }
|
7225 + | /* StructureGenerator.kt:135 */
|
5065 7226 | }
|
7227 + | /* RustType.kt:516 */
|
5066 7228 | #[allow(clippy::new_without_default)]
|
7229 + | /* RustType.kt:516 */
|
5067 7230 | #[allow(clippy::too_many_arguments)]
|
7231 + | /* RustType.kt:516 */
|
5068 7232 | #[::pyo3::pymethods]
|
7233 + | /* PythonServerStructureGenerator.kt:88 */
|
5069 7234 | impl IgnoreQueryParamsInResponseOutput {
|
5070 7235 | #[new]
|
5071 7236 | pub fn new(baz: ::std::option::Option<::std::string::String>) -> Self {
|
5072 7237 | Self { baz }
|
5073 7238 | }
|
5074 7239 | fn __repr__(&self) -> String {
|
5075 7240 | format!("{self:?}")
|
5076 7241 | }
|
5077 7242 | fn __str__(&self) -> String {
|
5078 7243 | format!("{self:?}")
|
5079 7244 | }
|
5080 7245 | }
|
7246 + | /* PythonServerStructureGenerator.kt:111 */
|
5081 7247 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<IgnoreQueryParamsInResponseOutput> {
|
5082 7248 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
5083 7249 | ob.extract::<IgnoreQueryParamsInResponseOutput>()
|
5084 7250 | .map(Box::new)
|
5085 7251 | }
|
5086 7252 | }
|
5087 7253 |
|
5088 7254 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<IgnoreQueryParamsInResponseOutput> {
|
5089 7255 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
5090 7256 | (*self).into_py(py)
|
5091 7257 | }
|
5092 7258 | }
|
7259 + | /* ServerCodegenVisitor.kt:370 */
|
5093 7260 | impl IgnoreQueryParamsInResponseOutput {
|
5094 - | /// Creates a new builder-style object to manufacture [`IgnoreQueryParamsInResponseOutput`](crate::output::IgnoreQueryParamsInResponseOutput).
|
7261 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`IgnoreQueryParamsInResponseOutput`](crate::output::IgnoreQueryParamsInResponseOutput).
|
7262 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
5095 7263 | pub fn builder() -> crate::output::ignore_query_params_in_response_output::Builder {
|
7264 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
5096 7265 | crate::output::ignore_query_params_in_response_output::Builder::default()
|
7266 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
5097 7267 | }
|
7268 + | /* ServerCodegenVisitor.kt:370 */
|
5098 7269 | }
|
5099 7270 |
|
7271 + | /* RustType.kt:516 */
|
5100 7272 | #[::pyo3::pyclass]
|
7273 + | /* PythonServerStructureGenerator.kt:63 */
|
5101 7274 | /// :rtype None:
|
7275 + | /* StructureGenerator.kt:197 */
|
5102 7276 | #[allow(missing_docs)] // documentation missing in model
|
7277 + | /* RustType.kt:516 */
|
5103 7278 | #[derive(
|
5104 7279 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
5105 7280 | )]
|
5106 - | pub struct ConstantAndVariableQueryStringOutput {}
|
7281 + | pub /* StructureGenerator.kt:201 */ struct ConstantAndVariableQueryStringOutput {/* StructureGenerator.kt:201 */}
|
7282 + | /* RustType.kt:516 */
|
5107 7283 | #[allow(clippy::new_without_default)]
|
7284 + | /* RustType.kt:516 */
|
5108 7285 | #[allow(clippy::too_many_arguments)]
|
7286 + | /* RustType.kt:516 */
|
5109 7287 | #[::pyo3::pymethods]
|
7288 + | /* PythonServerStructureGenerator.kt:88 */
|
5110 7289 | impl ConstantAndVariableQueryStringOutput {
|
5111 7290 | #[new]
|
5112 7291 | pub fn new() -> Self {
|
5113 7292 | Self {}
|
5114 7293 | }
|
5115 7294 | fn __repr__(&self) -> String {
|
5116 7295 | format!("{self:?}")
|
5117 7296 | }
|
5118 7297 | fn __str__(&self) -> String {
|
5119 7298 | format!("{self:?}")
|
5120 7299 | }
|
5121 7300 | }
|
7301 + | /* PythonServerStructureGenerator.kt:111 */
|
5122 7302 | impl<'source> ::pyo3::FromPyObject<'source>
|
5123 7303 | for std::boxed::Box<ConstantAndVariableQueryStringOutput>
|
5124 7304 | {
|
5125 7305 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
5126 7306 | ob.extract::<ConstantAndVariableQueryStringOutput>()
|
5127 7307 | .map(Box::new)
|
5128 7308 | }
|
5129 7309 | }
|
5130 7310 |
|
5131 7311 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<ConstantAndVariableQueryStringOutput> {
|
5132 7312 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
5133 7313 | (*self).into_py(py)
|
5134 7314 | }
|
5135 7315 | }
|
7316 + | /* ServerCodegenVisitor.kt:370 */
|
5136 7317 | impl ConstantAndVariableQueryStringOutput {
|
5137 - | /// Creates a new builder-style object to manufacture [`ConstantAndVariableQueryStringOutput`](crate::output::ConstantAndVariableQueryStringOutput).
|
7318 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`ConstantAndVariableQueryStringOutput`](crate::output::ConstantAndVariableQueryStringOutput).
|
7319 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
5138 7320 | pub fn builder() -> crate::output::constant_and_variable_query_string_output::Builder {
|
7321 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
5139 7322 | crate::output::constant_and_variable_query_string_output::Builder::default()
|
7323 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
5140 7324 | }
|
7325 + | /* ServerCodegenVisitor.kt:370 */
|
5141 7326 | }
|
5142 7327 |
|
7328 + | /* RustType.kt:516 */
|
5143 7329 | #[::pyo3::pyclass]
|
7330 + | /* PythonServerStructureGenerator.kt:63 */
|
5144 7331 | /// :rtype None:
|
7332 + | /* StructureGenerator.kt:197 */
|
5145 7333 | #[allow(missing_docs)] // documentation missing in model
|
7334 + | /* RustType.kt:516 */
|
5146 7335 | #[derive(
|
5147 7336 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
5148 7337 | )]
|
5149 - | pub struct ConstantQueryStringOutput {}
|
7338 + | pub /* StructureGenerator.kt:201 */ struct ConstantQueryStringOutput {/* StructureGenerator.kt:201 */}
|
7339 + | /* RustType.kt:516 */
|
5150 7340 | #[allow(clippy::new_without_default)]
|
7341 + | /* RustType.kt:516 */
|
5151 7342 | #[allow(clippy::too_many_arguments)]
|
7343 + | /* RustType.kt:516 */
|
5152 7344 | #[::pyo3::pymethods]
|
7345 + | /* PythonServerStructureGenerator.kt:88 */
|
5153 7346 | impl ConstantQueryStringOutput {
|
5154 7347 | #[new]
|
5155 7348 | pub fn new() -> Self {
|
5156 7349 | Self {}
|
5157 7350 | }
|
5158 7351 | fn __repr__(&self) -> String {
|
5159 7352 | format!("{self:?}")
|
5160 7353 | }
|
5161 7354 | fn __str__(&self) -> String {
|
5162 7355 | format!("{self:?}")
|
5163 7356 | }
|
5164 7357 | }
|
7358 + | /* PythonServerStructureGenerator.kt:111 */
|
5165 7359 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<ConstantQueryStringOutput> {
|
5166 7360 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
5167 7361 | ob.extract::<ConstantQueryStringOutput>().map(Box::new)
|
5168 7362 | }
|
5169 7363 | }
|
5170 7364 |
|
5171 7365 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<ConstantQueryStringOutput> {
|
5172 7366 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
5173 7367 | (*self).into_py(py)
|
5174 7368 | }
|
5175 7369 | }
|
7370 + | /* ServerCodegenVisitor.kt:370 */
|
5176 7371 | impl ConstantQueryStringOutput {
|
5177 - | /// Creates a new builder-style object to manufacture [`ConstantQueryStringOutput`](crate::output::ConstantQueryStringOutput).
|
7372 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`ConstantQueryStringOutput`](crate::output::ConstantQueryStringOutput).
|
7373 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
5178 7374 | pub fn builder() -> crate::output::constant_query_string_output::Builder {
|
7375 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
5179 7376 | crate::output::constant_query_string_output::Builder::default()
|
7377 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
5180 7378 | }
|
7379 + | /* ServerCodegenVisitor.kt:370 */
|
5181 7380 | }
|
5182 7381 |
|
7382 + | /* RustType.kt:516 */
|
5183 7383 | #[::pyo3::pyclass]
|
7384 + | /* PythonServerStructureGenerator.kt:63 */
|
5184 7385 | /// :rtype None:
|
7386 + | /* StructureGenerator.kt:197 */
|
5185 7387 | #[allow(missing_docs)] // documentation missing in model
|
7388 + | /* RustType.kt:516 */
|
5186 7389 | #[derive(
|
5187 7390 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
5188 7391 | )]
|
5189 - | pub struct AllQueryStringTypesOutput {}
|
7392 + | pub /* StructureGenerator.kt:201 */ struct AllQueryStringTypesOutput {/* StructureGenerator.kt:201 */}
|
7393 + | /* RustType.kt:516 */
|
5190 7394 | #[allow(clippy::new_without_default)]
|
7395 + | /* RustType.kt:516 */
|
5191 7396 | #[allow(clippy::too_many_arguments)]
|
7397 + | /* RustType.kt:516 */
|
5192 7398 | #[::pyo3::pymethods]
|
7399 + | /* PythonServerStructureGenerator.kt:88 */
|
5193 7400 | impl AllQueryStringTypesOutput {
|
5194 7401 | #[new]
|
5195 7402 | pub fn new() -> Self {
|
5196 7403 | Self {}
|
5197 7404 | }
|
5198 7405 | fn __repr__(&self) -> String {
|
5199 7406 | format!("{self:?}")
|
5200 7407 | }
|
5201 7408 | fn __str__(&self) -> String {
|
5202 7409 | format!("{self:?}")
|
5203 7410 | }
|
5204 7411 | }
|
7412 + | /* PythonServerStructureGenerator.kt:111 */
|
5205 7413 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<AllQueryStringTypesOutput> {
|
5206 7414 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
5207 7415 | ob.extract::<AllQueryStringTypesOutput>().map(Box::new)
|
5208 7416 | }
|
5209 7417 | }
|
5210 7418 |
|
5211 7419 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<AllQueryStringTypesOutput> {
|
5212 7420 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
5213 7421 | (*self).into_py(py)
|
5214 7422 | }
|
5215 7423 | }
|
7424 + | /* ServerCodegenVisitor.kt:370 */
|
5216 7425 | impl AllQueryStringTypesOutput {
|
5217 - | /// Creates a new builder-style object to manufacture [`AllQueryStringTypesOutput`](crate::output::AllQueryStringTypesOutput).
|
7426 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`AllQueryStringTypesOutput`](crate::output::AllQueryStringTypesOutput).
|
7427 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
5218 7428 | pub fn builder() -> crate::output::all_query_string_types_output::Builder {
|
7429 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
5219 7430 | crate::output::all_query_string_types_output::Builder::default()
|
7431 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
5220 7432 | }
|
7433 + | /* ServerCodegenVisitor.kt:370 */
|
5221 7434 | }
|
5222 7435 |
|
7436 + | /* RustType.kt:516 */
|
5223 7437 | #[::pyo3::pyclass]
|
7438 + | /* PythonServerStructureGenerator.kt:63 */
|
5224 7439 | /// :rtype None:
|
7440 + | /* StructureGenerator.kt:197 */
|
5225 7441 | #[allow(missing_docs)] // documentation missing in model
|
7442 + | /* RustType.kt:516 */
|
5226 7443 | #[derive(
|
5227 7444 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
5228 7445 | )]
|
5229 - | pub struct HttpRequestWithRegexLiteralOutput {}
|
7446 + | pub /* StructureGenerator.kt:201 */ struct HttpRequestWithRegexLiteralOutput {/* StructureGenerator.kt:201 */}
|
7447 + | /* RustType.kt:516 */
|
5230 7448 | #[allow(clippy::new_without_default)]
|
7449 + | /* RustType.kt:516 */
|
5231 7450 | #[allow(clippy::too_many_arguments)]
|
7451 + | /* RustType.kt:516 */
|
5232 7452 | #[::pyo3::pymethods]
|
7453 + | /* PythonServerStructureGenerator.kt:88 */
|
5233 7454 | impl HttpRequestWithRegexLiteralOutput {
|
5234 7455 | #[new]
|
5235 7456 | pub fn new() -> Self {
|
5236 7457 | Self {}
|
5237 7458 | }
|
5238 7459 | fn __repr__(&self) -> String {
|
5239 7460 | format!("{self:?}")
|
5240 7461 | }
|
5241 7462 | fn __str__(&self) -> String {
|
5242 7463 | format!("{self:?}")
|
5243 7464 | }
|
5244 7465 | }
|
7466 + | /* PythonServerStructureGenerator.kt:111 */
|
5245 7467 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<HttpRequestWithRegexLiteralOutput> {
|
5246 7468 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
5247 7469 | ob.extract::<HttpRequestWithRegexLiteralOutput>()
|
5248 7470 | .map(Box::new)
|
5249 7471 | }
|
5250 7472 | }
|
5251 7473 |
|
5252 7474 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<HttpRequestWithRegexLiteralOutput> {
|
5253 7475 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
5254 7476 | (*self).into_py(py)
|
5255 7477 | }
|
5256 7478 | }
|
7479 + | /* ServerCodegenVisitor.kt:370 */
|
5257 7480 | impl HttpRequestWithRegexLiteralOutput {
|
5258 - | /// Creates a new builder-style object to manufacture [`HttpRequestWithRegexLiteralOutput`](crate::output::HttpRequestWithRegexLiteralOutput).
|
7481 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`HttpRequestWithRegexLiteralOutput`](crate::output::HttpRequestWithRegexLiteralOutput).
|
7482 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
5259 7483 | pub fn builder() -> crate::output::http_request_with_regex_literal_output::Builder {
|
7484 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
5260 7485 | crate::output::http_request_with_regex_literal_output::Builder::default()
|
7486 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
5261 7487 | }
|
7488 + | /* ServerCodegenVisitor.kt:370 */
|
5262 7489 | }
|
5263 7490 |
|
7491 + | /* RustType.kt:516 */
|
5264 7492 | #[::pyo3::pyclass]
|
7493 + | /* PythonServerStructureGenerator.kt:63 */
|
5265 7494 | /// :rtype None:
|
7495 + | /* StructureGenerator.kt:197 */
|
5266 7496 | #[allow(missing_docs)] // documentation missing in model
|
7497 + | /* RustType.kt:516 */
|
5267 7498 | #[derive(
|
5268 7499 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
5269 7500 | )]
|
5270 - | pub struct HttpRequestWithFloatLabelsOutput {}
|
7501 + | pub /* StructureGenerator.kt:201 */ struct HttpRequestWithFloatLabelsOutput {/* StructureGenerator.kt:201 */}
|
7502 + | /* RustType.kt:516 */
|
5271 7503 | #[allow(clippy::new_without_default)]
|
7504 + | /* RustType.kt:516 */
|
5272 7505 | #[allow(clippy::too_many_arguments)]
|
7506 + | /* RustType.kt:516 */
|
5273 7507 | #[::pyo3::pymethods]
|
7508 + | /* PythonServerStructureGenerator.kt:88 */
|
5274 7509 | impl HttpRequestWithFloatLabelsOutput {
|
5275 7510 | #[new]
|
5276 7511 | pub fn new() -> Self {
|
5277 7512 | Self {}
|
5278 7513 | }
|
5279 7514 | fn __repr__(&self) -> String {
|
5280 7515 | format!("{self:?}")
|
5281 7516 | }
|
5282 7517 | fn __str__(&self) -> String {
|
5283 7518 | format!("{self:?}")
|
5284 7519 | }
|
5285 7520 | }
|
7521 + | /* PythonServerStructureGenerator.kt:111 */
|
5286 7522 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<HttpRequestWithFloatLabelsOutput> {
|
5287 7523 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
5288 7524 | ob.extract::<HttpRequestWithFloatLabelsOutput>()
|
5289 7525 | .map(Box::new)
|
5290 7526 | }
|
5291 7527 | }
|
5292 7528 |
|
5293 7529 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<HttpRequestWithFloatLabelsOutput> {
|
5294 7530 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
5295 7531 | (*self).into_py(py)
|
5296 7532 | }
|
5297 7533 | }
|
7534 + | /* ServerCodegenVisitor.kt:370 */
|
5298 7535 | impl HttpRequestWithFloatLabelsOutput {
|
5299 - | /// Creates a new builder-style object to manufacture [`HttpRequestWithFloatLabelsOutput`](crate::output::HttpRequestWithFloatLabelsOutput).
|
7536 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`HttpRequestWithFloatLabelsOutput`](crate::output::HttpRequestWithFloatLabelsOutput).
|
7537 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
5300 7538 | pub fn builder() -> crate::output::http_request_with_float_labels_output::Builder {
|
7539 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
5301 7540 | crate::output::http_request_with_float_labels_output::Builder::default()
|
7541 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
5302 7542 | }
|
7543 + | /* ServerCodegenVisitor.kt:370 */
|
5303 7544 | }
|
5304 7545 |
|
7546 + | /* RustType.kt:516 */
|
5305 7547 | #[::pyo3::pyclass]
|
7548 + | /* PythonServerStructureGenerator.kt:63 */
|
5306 7549 | /// :rtype None:
|
7550 + | /* StructureGenerator.kt:197 */
|
5307 7551 | #[allow(missing_docs)] // documentation missing in model
|
7552 + | /* RustType.kt:516 */
|
5308 7553 | #[derive(
|
5309 7554 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
5310 7555 | )]
|
5311 - | pub struct HttpRequestWithGreedyLabelInPathOutput {}
|
7556 + | pub /* StructureGenerator.kt:201 */ struct HttpRequestWithGreedyLabelInPathOutput {/* StructureGenerator.kt:201 */}
|
7557 + | /* RustType.kt:516 */
|
5312 7558 | #[allow(clippy::new_without_default)]
|
7559 + | /* RustType.kt:516 */
|
5313 7560 | #[allow(clippy::too_many_arguments)]
|
7561 + | /* RustType.kt:516 */
|
5314 7562 | #[::pyo3::pymethods]
|
7563 + | /* PythonServerStructureGenerator.kt:88 */
|
5315 7564 | impl HttpRequestWithGreedyLabelInPathOutput {
|
5316 7565 | #[new]
|
5317 7566 | pub fn new() -> Self {
|
5318 7567 | Self {}
|
5319 7568 | }
|
5320 7569 | fn __repr__(&self) -> String {
|
5321 7570 | format!("{self:?}")
|
5322 7571 | }
|
5323 7572 | fn __str__(&self) -> String {
|
5324 7573 | format!("{self:?}")
|
5325 7574 | }
|
5326 7575 | }
|
7576 + | /* PythonServerStructureGenerator.kt:111 */
|
5327 7577 | impl<'source> ::pyo3::FromPyObject<'source>
|
5328 7578 | for std::boxed::Box<HttpRequestWithGreedyLabelInPathOutput>
|
5329 7579 | {
|
5330 7580 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
5331 7581 | ob.extract::<HttpRequestWithGreedyLabelInPathOutput>()
|
5332 7582 | .map(Box::new)
|
5333 7583 | }
|
5334 7584 | }
|
5335 7585 |
|
5336 7586 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<HttpRequestWithGreedyLabelInPathOutput> {
|
5337 7587 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
5338 7588 | (*self).into_py(py)
|
5339 7589 | }
|
5340 7590 | }
|
7591 + | /* ServerCodegenVisitor.kt:370 */
|
5341 7592 | impl HttpRequestWithGreedyLabelInPathOutput {
|
5342 - | /// Creates a new builder-style object to manufacture [`HttpRequestWithGreedyLabelInPathOutput`](crate::output::HttpRequestWithGreedyLabelInPathOutput).
|
7593 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`HttpRequestWithGreedyLabelInPathOutput`](crate::output::HttpRequestWithGreedyLabelInPathOutput).
|
7594 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
5343 7595 | pub fn builder() -> crate::output::http_request_with_greedy_label_in_path_output::Builder {
|
7596 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
5344 7597 | crate::output::http_request_with_greedy_label_in_path_output::Builder::default()
|
7598 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
5345 7599 | }
|
7600 + | /* ServerCodegenVisitor.kt:370 */
|
5346 7601 | }
|
5347 7602 |
|
7603 + | /* RustType.kt:516 */
|
5348 7604 | #[::pyo3::pyclass]
|
7605 + | /* PythonServerStructureGenerator.kt:63 */
|
5349 7606 | /// :rtype None:
|
7607 + | /* StructureGenerator.kt:197 */
|
5350 7608 | #[allow(missing_docs)] // documentation missing in model
|
7609 + | /* RustType.kt:516 */
|
5351 7610 | #[derive(
|
5352 7611 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
5353 7612 | )]
|
5354 - | pub struct HttpRequestWithLabelsAndTimestampFormatOutput {}
|
7613 + | pub /* StructureGenerator.kt:201 */ struct HttpRequestWithLabelsAndTimestampFormatOutput {/* StructureGenerator.kt:201 */}
|
7614 + | /* RustType.kt:516 */
|
5355 7615 | #[allow(clippy::new_without_default)]
|
7616 + | /* RustType.kt:516 */
|
5356 7617 | #[allow(clippy::too_many_arguments)]
|
7618 + | /* RustType.kt:516 */
|
5357 7619 | #[::pyo3::pymethods]
|
7620 + | /* PythonServerStructureGenerator.kt:88 */
|
5358 7621 | impl HttpRequestWithLabelsAndTimestampFormatOutput {
|
5359 7622 | #[new]
|
5360 7623 | pub fn new() -> Self {
|
5361 7624 | Self {}
|
5362 7625 | }
|
5363 7626 | fn __repr__(&self) -> String {
|
5364 7627 | format!("{self:?}")
|
5365 7628 | }
|
5366 7629 | fn __str__(&self) -> String {
|
5367 7630 | format!("{self:?}")
|
5368 7631 | }
|
5369 7632 | }
|
7633 + | /* PythonServerStructureGenerator.kt:111 */
|
5370 7634 | impl<'source> ::pyo3::FromPyObject<'source>
|
5371 7635 | for std::boxed::Box<HttpRequestWithLabelsAndTimestampFormatOutput>
|
5372 7636 | {
|
5373 7637 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
5374 7638 | ob.extract::<HttpRequestWithLabelsAndTimestampFormatOutput>()
|
5375 7639 | .map(Box::new)
|
5376 7640 | }
|
5377 7641 | }
|
5378 7642 |
|
5379 7643 | impl ::pyo3::IntoPy<::pyo3::PyObject>
|
5380 7644 | for std::boxed::Box<HttpRequestWithLabelsAndTimestampFormatOutput>
|
5381 7645 | {
|
5382 7646 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
5383 7647 | (*self).into_py(py)
|
5384 7648 | }
|
5385 7649 | }
|
7650 + | /* ServerCodegenVisitor.kt:370 */
|
5386 7651 | impl HttpRequestWithLabelsAndTimestampFormatOutput {
|
5387 - | /// Creates a new builder-style object to manufacture [`HttpRequestWithLabelsAndTimestampFormatOutput`](crate::output::HttpRequestWithLabelsAndTimestampFormatOutput).
|
7652 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`HttpRequestWithLabelsAndTimestampFormatOutput`](crate::output::HttpRequestWithLabelsAndTimestampFormatOutput).
|
7653 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
5388 7654 | pub fn builder() -> crate::output::http_request_with_labels_and_timestamp_format_output::Builder
|
5389 7655 | {
|
7656 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
5390 7657 | crate::output::http_request_with_labels_and_timestamp_format_output::Builder::default()
|
7658 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
5391 7659 | }
|
7660 + | /* ServerCodegenVisitor.kt:370 */
|
5392 7661 | }
|
5393 7662 |
|
7663 + | /* RustType.kt:516 */
|
5394 7664 | #[::pyo3::pyclass]
|
7665 + | /* PythonServerStructureGenerator.kt:63 */
|
5395 7666 | /// :rtype None:
|
7667 + | /* StructureGenerator.kt:197 */
|
5396 7668 | #[allow(missing_docs)] // documentation missing in model
|
7669 + | /* RustType.kt:516 */
|
5397 7670 | #[derive(
|
5398 7671 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
5399 7672 | )]
|
5400 - | pub struct HttpRequestWithLabelsOutput {}
|
7673 + | pub /* StructureGenerator.kt:201 */ struct HttpRequestWithLabelsOutput {/* StructureGenerator.kt:201 */}
|
7674 + | /* RustType.kt:516 */
|
5401 7675 | #[allow(clippy::new_without_default)]
|
7676 + | /* RustType.kt:516 */
|
5402 7677 | #[allow(clippy::too_many_arguments)]
|
7678 + | /* RustType.kt:516 */
|
5403 7679 | #[::pyo3::pymethods]
|
7680 + | /* PythonServerStructureGenerator.kt:88 */
|
5404 7681 | impl HttpRequestWithLabelsOutput {
|
5405 7682 | #[new]
|
5406 7683 | pub fn new() -> Self {
|
5407 7684 | Self {}
|
5408 7685 | }
|
5409 7686 | fn __repr__(&self) -> String {
|
5410 7687 | format!("{self:?}")
|
5411 7688 | }
|
5412 7689 | fn __str__(&self) -> String {
|
5413 7690 | format!("{self:?}")
|
5414 7691 | }
|
5415 7692 | }
|
7693 + | /* PythonServerStructureGenerator.kt:111 */
|
5416 7694 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<HttpRequestWithLabelsOutput> {
|
5417 7695 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
5418 7696 | ob.extract::<HttpRequestWithLabelsOutput>().map(Box::new)
|
5419 7697 | }
|
5420 7698 | }
|
5421 7699 |
|
5422 7700 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<HttpRequestWithLabelsOutput> {
|
5423 7701 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
5424 7702 | (*self).into_py(py)
|
5425 7703 | }
|
5426 7704 | }
|
7705 + | /* ServerCodegenVisitor.kt:370 */
|
5427 7706 | impl HttpRequestWithLabelsOutput {
|
5428 - | /// Creates a new builder-style object to manufacture [`HttpRequestWithLabelsOutput`](crate::output::HttpRequestWithLabelsOutput).
|
7707 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`HttpRequestWithLabelsOutput`](crate::output::HttpRequestWithLabelsOutput).
|
7708 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
5429 7709 | pub fn builder() -> crate::output::http_request_with_labels_output::Builder {
|
7710 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
5430 7711 | crate::output::http_request_with_labels_output::Builder::default()
|
7712 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
5431 7713 | }
|
7714 + | /* ServerCodegenVisitor.kt:370 */
|
5432 7715 | }
|
5433 7716 |
|
7717 + | /* RustType.kt:516 */
|
5434 7718 | #[::pyo3::pyclass]
|
7719 + | /* PythonServerStructureGenerator.kt:63 */
|
5435 7720 | /// :param json typing.Optional\[str\]:
|
5436 7721 | /// :rtype None:
|
7722 + | /* StructureGenerator.kt:197 */
|
5437 7723 | #[allow(missing_docs)] // documentation missing in model
|
7724 + | /* RustType.kt:516 */
|
5438 7725 | #[derive(
|
5439 7726 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
5440 7727 | )]
|
5441 - | pub struct MediaTypeHeaderOutput {
|
7728 + | pub /* StructureGenerator.kt:201 */ struct MediaTypeHeaderOutput {
|
7729 + | /* RustType.kt:516 */
|
5442 7730 | #[pyo3(get, set)]
|
7731 + | /* PythonServerStructureGenerator.kt:80 */
|
5443 7732 | /// :type typing.Optional\[str\]:
|
7733 + | /* StructureGenerator.kt:231 */
|
5444 7734 | #[allow(missing_docs)] // documentation missing in model
|
5445 7735 | pub json: ::std::option::Option<::std::string::String>,
|
7736 + | /* StructureGenerator.kt:201 */
|
5446 7737 | }
|
7738 + | /* StructureGenerator.kt:135 */
|
5447 7739 | impl MediaTypeHeaderOutput {
|
7740 + | /* StructureGenerator.kt:231 */
|
5448 7741 | #[allow(missing_docs)] // documentation missing in model
|
7742 + | /* StructureGenerator.kt:166 */
|
5449 7743 | pub fn json(&self) -> ::std::option::Option<&str> {
|
7744 + | /* StructureGenerator.kt:169 */
|
5450 7745 | self.json.as_deref()
|
7746 + | /* StructureGenerator.kt:166 */
|
5451 7747 | }
|
7748 + | /* StructureGenerator.kt:135 */
|
5452 7749 | }
|
7750 + | /* RustType.kt:516 */
|
5453 7751 | #[allow(clippy::new_without_default)]
|
7752 + | /* RustType.kt:516 */
|
5454 7753 | #[allow(clippy::too_many_arguments)]
|
7754 + | /* RustType.kt:516 */
|
5455 7755 | #[::pyo3::pymethods]
|
7756 + | /* PythonServerStructureGenerator.kt:88 */
|
5456 7757 | impl MediaTypeHeaderOutput {
|
5457 7758 | #[new]
|
5458 7759 | pub fn new(json: ::std::option::Option<::std::string::String>) -> Self {
|
5459 7760 | Self { json }
|
5460 7761 | }
|
5461 7762 | fn __repr__(&self) -> String {
|
5462 7763 | format!("{self:?}")
|
5463 7764 | }
|
5464 7765 | fn __str__(&self) -> String {
|
5465 7766 | format!("{self:?}")
|
5466 7767 | }
|
5467 7768 | }
|
7769 + | /* PythonServerStructureGenerator.kt:111 */
|
5468 7770 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<MediaTypeHeaderOutput> {
|
5469 7771 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
5470 7772 | ob.extract::<MediaTypeHeaderOutput>().map(Box::new)
|
5471 7773 | }
|
5472 7774 | }
|
5473 7775 |
|
5474 7776 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<MediaTypeHeaderOutput> {
|
5475 7777 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
5476 7778 | (*self).into_py(py)
|
5477 7779 | }
|
5478 7780 | }
|
7781 + | /* ServerCodegenVisitor.kt:370 */
|
5479 7782 | impl MediaTypeHeaderOutput {
|
5480 - | /// Creates a new builder-style object to manufacture [`MediaTypeHeaderOutput`](crate::output::MediaTypeHeaderOutput).
|
7783 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`MediaTypeHeaderOutput`](crate::output::MediaTypeHeaderOutput).
|
7784 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
5481 7785 | pub fn builder() -> crate::output::media_type_header_output::Builder {
|
7786 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
5482 7787 | crate::output::media_type_header_output::Builder::default()
|
7788 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
5483 7789 | }
|
7790 + | /* ServerCodegenVisitor.kt:370 */
|
5484 7791 | }
|
5485 7792 |
|
7793 + | /* RustType.kt:516 */
|
5486 7794 | #[::pyo3::pyclass]
|
7795 + | /* PythonServerStructureGenerator.kt:63 */
|
5487 7796 | /// :param member_epoch_seconds typing.Optional\[rest_json.types.DateTime\]:
|
5488 7797 | /// :param member_http_date typing.Optional\[rest_json.types.DateTime\]:
|
5489 7798 | /// :param member_date_time typing.Optional\[rest_json.types.DateTime\]:
|
5490 7799 | /// :param default_format typing.Optional\[rest_json.types.DateTime\]:
|
5491 7800 | /// :param target_epoch_seconds typing.Optional\[rest_json.types.DateTime\]:
|
5492 7801 | /// :param target_http_date typing.Optional\[rest_json.types.DateTime\]:
|
5493 7802 | /// :param target_date_time typing.Optional\[rest_json.types.DateTime\]:
|
5494 7803 | /// :rtype None:
|
7804 + | /* StructureGenerator.kt:197 */
|
5495 7805 | #[allow(missing_docs)] // documentation missing in model
|
7806 + | /* RustType.kt:516 */
|
5496 7807 | #[derive(
|
5497 7808 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
5498 7809 | )]
|
5499 - | pub struct TimestampFormatHeadersOutput {
|
7810 + | pub /* StructureGenerator.kt:201 */ struct TimestampFormatHeadersOutput {
|
7811 + | /* RustType.kt:516 */
|
5500 7812 | #[pyo3(get, set)]
|
7813 + | /* PythonServerStructureGenerator.kt:80 */
|
5501 7814 | /// :type typing.Optional\[rest_json.types.DateTime\]:
|
7815 + | /* StructureGenerator.kt:231 */
|
5502 7816 | #[allow(missing_docs)] // documentation missing in model
|
5503 7817 | pub member_epoch_seconds:
|
5504 7818 | ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
7819 + | /* RustType.kt:516 */
|
5505 7820 | #[pyo3(get, set)]
|
7821 + | /* PythonServerStructureGenerator.kt:80 */
|
5506 7822 | /// :type typing.Optional\[rest_json.types.DateTime\]:
|
7823 + | /* StructureGenerator.kt:231 */
|
5507 7824 | #[allow(missing_docs)] // documentation missing in model
|
5508 7825 | pub member_http_date: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
7826 + | /* RustType.kt:516 */
|
5509 7827 | #[pyo3(get, set)]
|
7828 + | /* PythonServerStructureGenerator.kt:80 */
|
5510 7829 | /// :type typing.Optional\[rest_json.types.DateTime\]:
|
7830 + | /* StructureGenerator.kt:231 */
|
5511 7831 | #[allow(missing_docs)] // documentation missing in model
|
5512 7832 | pub member_date_time: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
7833 + | /* RustType.kt:516 */
|
5513 7834 | #[pyo3(get, set)]
|
7835 + | /* PythonServerStructureGenerator.kt:80 */
|
5514 7836 | /// :type typing.Optional\[rest_json.types.DateTime\]:
|
7837 + | /* StructureGenerator.kt:231 */
|
5515 7838 | #[allow(missing_docs)] // documentation missing in model
|
5516 7839 | pub default_format: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
7840 + | /* RustType.kt:516 */
|
5517 7841 | #[pyo3(get, set)]
|
7842 + | /* PythonServerStructureGenerator.kt:80 */
|
5518 7843 | /// :type typing.Optional\[rest_json.types.DateTime\]:
|
7844 + | /* StructureGenerator.kt:231 */
|
5519 7845 | #[allow(missing_docs)] // documentation missing in model
|
5520 7846 | pub target_epoch_seconds:
|
5521 7847 | ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
7848 + | /* RustType.kt:516 */
|
5522 7849 | #[pyo3(get, set)]
|
7850 + | /* PythonServerStructureGenerator.kt:80 */
|
5523 7851 | /// :type typing.Optional\[rest_json.types.DateTime\]:
|
7852 + | /* StructureGenerator.kt:231 */
|
5524 7853 | #[allow(missing_docs)] // documentation missing in model
|
5525 7854 | pub target_http_date: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
7855 + | /* RustType.kt:516 */
|
5526 7856 | #[pyo3(get, set)]
|
7857 + | /* PythonServerStructureGenerator.kt:80 */
|
5527 7858 | /// :type typing.Optional\[rest_json.types.DateTime\]:
|
7859 + | /* StructureGenerator.kt:231 */
|
5528 7860 | #[allow(missing_docs)] // documentation missing in model
|
5529 7861 | pub target_date_time: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
7862 + | /* StructureGenerator.kt:201 */
|
5530 7863 | }
|
7864 + | /* StructureGenerator.kt:135 */
|
5531 7865 | impl TimestampFormatHeadersOutput {
|
7866 + | /* StructureGenerator.kt:231 */
|
5532 7867 | #[allow(missing_docs)] // documentation missing in model
|
7868 + | /* StructureGenerator.kt:166 */
|
5533 7869 | pub fn member_epoch_seconds(
|
5534 7870 | &self,
|
5535 7871 | ) -> ::std::option::Option<&::aws_smithy_http_server_python::types::DateTime> {
|
7872 + | /* StructureGenerator.kt:170 */
|
5536 7873 | self.member_epoch_seconds.as_ref()
|
7874 + | /* StructureGenerator.kt:166 */
|
5537 7875 | }
|
7876 + | /* StructureGenerator.kt:231 */
|
5538 7877 | #[allow(missing_docs)] // documentation missing in model
|
7878 + | /* StructureGenerator.kt:166 */
|
5539 7879 | pub fn member_http_date(
|
5540 7880 | &self,
|
5541 7881 | ) -> ::std::option::Option<&::aws_smithy_http_server_python::types::DateTime> {
|
7882 + | /* StructureGenerator.kt:170 */
|
5542 7883 | self.member_http_date.as_ref()
|
7884 + | /* StructureGenerator.kt:166 */
|
5543 7885 | }
|
7886 + | /* StructureGenerator.kt:231 */
|
5544 7887 | #[allow(missing_docs)] // documentation missing in model
|
7888 + | /* StructureGenerator.kt:166 */
|
5545 7889 | pub fn member_date_time(
|
5546 7890 | &self,
|
5547 7891 | ) -> ::std::option::Option<&::aws_smithy_http_server_python::types::DateTime> {
|
7892 + | /* StructureGenerator.kt:170 */
|
5548 7893 | self.member_date_time.as_ref()
|
7894 + | /* StructureGenerator.kt:166 */
|
5549 7895 | }
|
7896 + | /* StructureGenerator.kt:231 */
|
5550 7897 | #[allow(missing_docs)] // documentation missing in model
|
7898 + | /* StructureGenerator.kt:166 */
|
5551 7899 | pub fn default_format(
|
5552 7900 | &self,
|
5553 7901 | ) -> ::std::option::Option<&::aws_smithy_http_server_python::types::DateTime> {
|
7902 + | /* StructureGenerator.kt:170 */
|
5554 7903 | self.default_format.as_ref()
|
7904 + | /* StructureGenerator.kt:166 */
|
5555 7905 | }
|
7906 + | /* StructureGenerator.kt:231 */
|
5556 7907 | #[allow(missing_docs)] // documentation missing in model
|
7908 + | /* StructureGenerator.kt:166 */
|
5557 7909 | pub fn target_epoch_seconds(
|
5558 7910 | &self,
|
5559 7911 | ) -> ::std::option::Option<&::aws_smithy_http_server_python::types::DateTime> {
|
7912 + | /* StructureGenerator.kt:170 */
|
5560 7913 | self.target_epoch_seconds.as_ref()
|
7914 + | /* StructureGenerator.kt:166 */
|
5561 7915 | }
|
7916 + | /* StructureGenerator.kt:231 */
|
5562 7917 | #[allow(missing_docs)] // documentation missing in model
|
7918 + | /* StructureGenerator.kt:166 */
|
5563 7919 | pub fn target_http_date(
|
5564 7920 | &self,
|
5565 7921 | ) -> ::std::option::Option<&::aws_smithy_http_server_python::types::DateTime> {
|
7922 + | /* StructureGenerator.kt:170 */
|
5566 7923 | self.target_http_date.as_ref()
|
7924 + | /* StructureGenerator.kt:166 */
|
5567 7925 | }
|
7926 + | /* StructureGenerator.kt:231 */
|
5568 7927 | #[allow(missing_docs)] // documentation missing in model
|
7928 + | /* StructureGenerator.kt:166 */
|
5569 7929 | pub fn target_date_time(
|
5570 7930 | &self,
|
5571 7931 | ) -> ::std::option::Option<&::aws_smithy_http_server_python::types::DateTime> {
|
7932 + | /* StructureGenerator.kt:170 */
|
5572 7933 | self.target_date_time.as_ref()
|
7934 + | /* StructureGenerator.kt:166 */
|
5573 7935 | }
|
7936 + | /* StructureGenerator.kt:135 */
|
5574 7937 | }
|
7938 + | /* RustType.kt:516 */
|
5575 7939 | #[allow(clippy::new_without_default)]
|
7940 + | /* RustType.kt:516 */
|
5576 7941 | #[allow(clippy::too_many_arguments)]
|
7942 + | /* RustType.kt:516 */
|
5577 7943 | #[::pyo3::pymethods]
|
7944 + | /* PythonServerStructureGenerator.kt:88 */
|
5578 7945 | impl TimestampFormatHeadersOutput {
|
5579 7946 | #[new]
|
5580 7947 | pub fn new(
|
5581 7948 | member_epoch_seconds: ::std::option::Option<
|
5582 7949 | ::aws_smithy_http_server_python::types::DateTime,
|
5583 7950 | >,
|
5584 7951 | member_http_date: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
5585 7952 | member_date_time: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
5586 7953 | default_format: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
5587 7954 | target_epoch_seconds: ::std::option::Option<
|
5588 7955 | ::aws_smithy_http_server_python::types::DateTime,
|
5589 7956 | >,
|
5590 7957 | target_http_date: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
5591 7958 | target_date_time: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
5592 7959 | ) -> Self {
|
5593 7960 | Self {
|
5594 7961 | member_epoch_seconds,
|
5595 7962 | member_http_date,
|
5596 7963 | member_date_time,
|
5597 7964 | default_format,
|
5598 7965 | target_epoch_seconds,
|
5599 7966 | target_http_date,
|
5600 7967 | target_date_time,
|
5601 7968 | }
|
5602 7969 | }
|
5603 7970 | fn __repr__(&self) -> String {
|
5604 7971 | format!("{self:?}")
|
5605 7972 | }
|
5606 7973 | fn __str__(&self) -> String {
|
5607 7974 | format!("{self:?}")
|
5608 7975 | }
|
5609 7976 | }
|
7977 + | /* PythonServerStructureGenerator.kt:111 */
|
5610 7978 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<TimestampFormatHeadersOutput> {
|
5611 7979 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
5612 7980 | ob.extract::<TimestampFormatHeadersOutput>().map(Box::new)
|
5613 7981 | }
|
5614 7982 | }
|
5615 7983 |
|
5616 7984 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<TimestampFormatHeadersOutput> {
|
5617 7985 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
5618 7986 | (*self).into_py(py)
|
5619 7987 | }
|
5620 7988 | }
|
7989 + | /* ServerCodegenVisitor.kt:370 */
|
5621 7990 | impl TimestampFormatHeadersOutput {
|
5622 - | /// Creates a new builder-style object to manufacture [`TimestampFormatHeadersOutput`](crate::output::TimestampFormatHeadersOutput).
|
7991 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`TimestampFormatHeadersOutput`](crate::output::TimestampFormatHeadersOutput).
|
7992 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
5623 7993 | pub fn builder() -> crate::output::timestamp_format_headers_output::Builder {
|
7994 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
5624 7995 | crate::output::timestamp_format_headers_output::Builder::default()
|
7996 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
5625 7997 | }
|
7998 + | /* ServerCodegenVisitor.kt:370 */
|
5626 7999 | }
|
5627 8000 |
|
8001 + | /* RustType.kt:516 */
|
5628 8002 | #[::pyo3::pyclass]
|
8003 + | /* PythonServerStructureGenerator.kt:63 */
|
5629 8004 | /// :param a typing.Optional\[str\]:
|
5630 8005 | /// :param b typing.Optional\[str\]:
|
5631 8006 | /// :param c typing.Optional\[typing.List\[str\]\]:
|
5632 8007 | /// :rtype None:
|
8008 + | /* StructureGenerator.kt:197 */
|
5633 8009 | #[allow(missing_docs)] // documentation missing in model
|
8010 + | /* RustType.kt:516 */
|
5634 8011 | #[derive(
|
5635 8012 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
5636 8013 | )]
|
5637 - | pub struct NullAndEmptyHeadersServerOutput {
|
8014 + | pub /* StructureGenerator.kt:201 */ struct NullAndEmptyHeadersServerOutput {
|
8015 + | /* RustType.kt:516 */
|
5638 8016 | #[pyo3(get, set)]
|
8017 + | /* PythonServerStructureGenerator.kt:80 */
|
5639 8018 | /// :type typing.Optional\[str\]:
|
8019 + | /* StructureGenerator.kt:231 */
|
5640 8020 | #[allow(missing_docs)] // documentation missing in model
|
5641 8021 | pub a: ::std::option::Option<::std::string::String>,
|
8022 + | /* RustType.kt:516 */
|
5642 8023 | #[pyo3(get, set)]
|
8024 + | /* PythonServerStructureGenerator.kt:80 */
|
5643 8025 | /// :type typing.Optional\[str\]:
|
8026 + | /* StructureGenerator.kt:231 */
|
5644 8027 | #[allow(missing_docs)] // documentation missing in model
|
5645 8028 | pub b: ::std::option::Option<::std::string::String>,
|
8029 + | /* RustType.kt:516 */
|
5646 8030 | #[pyo3(get, set)]
|
8031 + | /* PythonServerStructureGenerator.kt:80 */
|
5647 8032 | /// :type typing.Optional\[typing.List\[str\]\]:
|
8033 + | /* StructureGenerator.kt:231 */
|
5648 8034 | #[allow(missing_docs)] // documentation missing in model
|
5649 8035 | pub c: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
8036 + | /* StructureGenerator.kt:201 */
|
5650 8037 | }
|
8038 + | /* StructureGenerator.kt:135 */
|
5651 8039 | impl NullAndEmptyHeadersServerOutput {
|
8040 + | /* StructureGenerator.kt:231 */
|
5652 8041 | #[allow(missing_docs)] // documentation missing in model
|
8042 + | /* StructureGenerator.kt:166 */
|
5653 8043 | pub fn a(&self) -> ::std::option::Option<&str> {
|
8044 + | /* StructureGenerator.kt:169 */
|
5654 8045 | self.a.as_deref()
|
8046 + | /* StructureGenerator.kt:166 */
|
5655 8047 | }
|
8048 + | /* StructureGenerator.kt:231 */
|
5656 8049 | #[allow(missing_docs)] // documentation missing in model
|
8050 + | /* StructureGenerator.kt:166 */
|
5657 8051 | pub fn b(&self) -> ::std::option::Option<&str> {
|
8052 + | /* StructureGenerator.kt:169 */
|
5658 8053 | self.b.as_deref()
|
8054 + | /* StructureGenerator.kt:166 */
|
5659 8055 | }
|
8056 + | /* StructureGenerator.kt:231 */
|
5660 8057 | #[allow(missing_docs)] // documentation missing in model
|
8058 + | /* StructureGenerator.kt:166 */
|
5661 8059 | pub fn c(&self) -> ::std::option::Option<&[::std::string::String]> {
|
8060 + | /* StructureGenerator.kt:169 */
|
5662 8061 | self.c.as_deref()
|
8062 + | /* StructureGenerator.kt:166 */
|
5663 8063 | }
|
8064 + | /* StructureGenerator.kt:135 */
|
5664 8065 | }
|
8066 + | /* RustType.kt:516 */
|
5665 8067 | #[allow(clippy::new_without_default)]
|
8068 + | /* RustType.kt:516 */
|
5666 8069 | #[allow(clippy::too_many_arguments)]
|
8070 + | /* RustType.kt:516 */
|
5667 8071 | #[::pyo3::pymethods]
|
8072 + | /* PythonServerStructureGenerator.kt:88 */
|
5668 8073 | impl NullAndEmptyHeadersServerOutput {
|
5669 8074 | #[new]
|
5670 8075 | pub fn new(
|
5671 8076 | a: ::std::option::Option<::std::string::String>,
|
5672 8077 | b: ::std::option::Option<::std::string::String>,
|
5673 8078 | c: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
5674 8079 | ) -> Self {
|
5675 8080 | Self { a, b, c }
|
5676 8081 | }
|
5677 8082 | fn __repr__(&self) -> String {
|
5678 8083 | format!("{self:?}")
|
5679 8084 | }
|
5680 8085 | fn __str__(&self) -> String {
|
5681 8086 | format!("{self:?}")
|
5682 8087 | }
|
5683 8088 | }
|
8089 + | /* PythonServerStructureGenerator.kt:111 */
|
5684 8090 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<NullAndEmptyHeadersServerOutput> {
|
5685 8091 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
5686 8092 | ob.extract::<NullAndEmptyHeadersServerOutput>()
|
5687 8093 | .map(Box::new)
|
5688 8094 | }
|
5689 8095 | }
|
5690 8096 |
|
5691 8097 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<NullAndEmptyHeadersServerOutput> {
|
5692 8098 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
5693 8099 | (*self).into_py(py)
|
5694 8100 | }
|
5695 8101 | }
|
8102 + | /* ServerCodegenVisitor.kt:370 */
|
5696 8103 | impl NullAndEmptyHeadersServerOutput {
|
5697 - | /// Creates a new builder-style object to manufacture [`NullAndEmptyHeadersServerOutput`](crate::output::NullAndEmptyHeadersServerOutput).
|
8104 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`NullAndEmptyHeadersServerOutput`](crate::output::NullAndEmptyHeadersServerOutput).
|
8105 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
5698 8106 | pub fn builder() -> crate::output::null_and_empty_headers_server_output::Builder {
|
8107 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
5699 8108 | crate::output::null_and_empty_headers_server_output::Builder::default()
|
8109 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
5700 8110 | }
|
8111 + | /* ServerCodegenVisitor.kt:370 */
|
5701 8112 | }
|
5702 8113 |
|
8114 + | /* RustType.kt:516 */
|
5703 8115 | #[::pyo3::pyclass]
|
8116 + | /* PythonServerStructureGenerator.kt:63 */
|
5704 8117 | /// :param a typing.Optional\[str\]:
|
5705 8118 | /// :param b typing.Optional\[str\]:
|
5706 8119 | /// :param c typing.Optional\[typing.List\[str\]\]:
|
5707 8120 | /// :rtype None:
|
8121 + | /* StructureGenerator.kt:197 */
|
5708 8122 | #[allow(missing_docs)] // documentation missing in model
|
8123 + | /* RustType.kt:516 */
|
5709 8124 | #[derive(
|
5710 8125 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
5711 8126 | )]
|
5712 - | pub struct NullAndEmptyHeadersClientOutput {
|
8127 + | pub /* StructureGenerator.kt:201 */ struct NullAndEmptyHeadersClientOutput {
|
8128 + | /* RustType.kt:516 */
|
5713 8129 | #[pyo3(get, set)]
|
8130 + | /* PythonServerStructureGenerator.kt:80 */
|
5714 8131 | /// :type typing.Optional\[str\]:
|
8132 + | /* StructureGenerator.kt:231 */
|
5715 8133 | #[allow(missing_docs)] // documentation missing in model
|
5716 8134 | pub a: ::std::option::Option<::std::string::String>,
|
8135 + | /* RustType.kt:516 */
|
5717 8136 | #[pyo3(get, set)]
|
8137 + | /* PythonServerStructureGenerator.kt:80 */
|
5718 8138 | /// :type typing.Optional\[str\]:
|
8139 + | /* StructureGenerator.kt:231 */
|
5719 8140 | #[allow(missing_docs)] // documentation missing in model
|
5720 8141 | pub b: ::std::option::Option<::std::string::String>,
|
8142 + | /* RustType.kt:516 */
|
5721 8143 | #[pyo3(get, set)]
|
8144 + | /* PythonServerStructureGenerator.kt:80 */
|
5722 8145 | /// :type typing.Optional\[typing.List\[str\]\]:
|
8146 + | /* StructureGenerator.kt:231 */
|
5723 8147 | #[allow(missing_docs)] // documentation missing in model
|
5724 8148 | pub c: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
8149 + | /* StructureGenerator.kt:201 */
|
5725 8150 | }
|
8151 + | /* StructureGenerator.kt:135 */
|
5726 8152 | impl NullAndEmptyHeadersClientOutput {
|
8153 + | /* StructureGenerator.kt:231 */
|
5727 8154 | #[allow(missing_docs)] // documentation missing in model
|
8155 + | /* StructureGenerator.kt:166 */
|
5728 8156 | pub fn a(&self) -> ::std::option::Option<&str> {
|
8157 + | /* StructureGenerator.kt:169 */
|
5729 8158 | self.a.as_deref()
|
8159 + | /* StructureGenerator.kt:166 */
|
5730 8160 | }
|
8161 + | /* StructureGenerator.kt:231 */
|
5731 8162 | #[allow(missing_docs)] // documentation missing in model
|
8163 + | /* StructureGenerator.kt:166 */
|
5732 8164 | pub fn b(&self) -> ::std::option::Option<&str> {
|
8165 + | /* StructureGenerator.kt:169 */
|
5733 8166 | self.b.as_deref()
|
8167 + | /* StructureGenerator.kt:166 */
|
5734 8168 | }
|
8169 + | /* StructureGenerator.kt:231 */
|
5735 8170 | #[allow(missing_docs)] // documentation missing in model
|
8171 + | /* StructureGenerator.kt:166 */
|
5736 8172 | pub fn c(&self) -> ::std::option::Option<&[::std::string::String]> {
|
8173 + | /* StructureGenerator.kt:169 */
|
5737 8174 | self.c.as_deref()
|
8175 + | /* StructureGenerator.kt:166 */
|
5738 8176 | }
|
8177 + | /* StructureGenerator.kt:135 */
|
5739 8178 | }
|
8179 + | /* RustType.kt:516 */
|
5740 8180 | #[allow(clippy::new_without_default)]
|
8181 + | /* RustType.kt:516 */
|
5741 8182 | #[allow(clippy::too_many_arguments)]
|
8183 + | /* RustType.kt:516 */
|
5742 8184 | #[::pyo3::pymethods]
|
8185 + | /* PythonServerStructureGenerator.kt:88 */
|
5743 8186 | impl NullAndEmptyHeadersClientOutput {
|
5744 8187 | #[new]
|
5745 8188 | pub fn new(
|
5746 8189 | a: ::std::option::Option<::std::string::String>,
|
5747 8190 | b: ::std::option::Option<::std::string::String>,
|
5748 8191 | c: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
5749 8192 | ) -> Self {
|
5750 8193 | Self { a, b, c }
|
5751 8194 | }
|
5752 8195 | fn __repr__(&self) -> String {
|
5753 8196 | format!("{self:?}")
|
5754 8197 | }
|
5755 8198 | fn __str__(&self) -> String {
|
5756 8199 | format!("{self:?}")
|
5757 8200 | }
|
5758 8201 | }
|
8202 + | /* PythonServerStructureGenerator.kt:111 */
|
5759 8203 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<NullAndEmptyHeadersClientOutput> {
|
5760 8204 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
5761 8205 | ob.extract::<NullAndEmptyHeadersClientOutput>()
|
5762 8206 | .map(Box::new)
|
5763 8207 | }
|
5764 8208 | }
|
5765 8209 |
|
5766 8210 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<NullAndEmptyHeadersClientOutput> {
|
5767 8211 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
5768 8212 | (*self).into_py(py)
|
5769 8213 | }
|
5770 8214 | }
|
8215 + | /* ServerCodegenVisitor.kt:370 */
|
5771 8216 | impl NullAndEmptyHeadersClientOutput {
|
5772 - | /// Creates a new builder-style object to manufacture [`NullAndEmptyHeadersClientOutput`](crate::output::NullAndEmptyHeadersClientOutput).
|
8217 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`NullAndEmptyHeadersClientOutput`](crate::output::NullAndEmptyHeadersClientOutput).
|
8218 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
5773 8219 | pub fn builder() -> crate::output::null_and_empty_headers_client_output::Builder {
|
8220 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
5774 8221 | crate::output::null_and_empty_headers_client_output::Builder::default()
|
8222 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
5775 8223 | }
|
8224 + | /* ServerCodegenVisitor.kt:370 */
|
5776 8225 | }
|
5777 8226 |
|
8227 + | /* RustType.kt:516 */
|
5778 8228 | #[::pyo3::pyclass]
|
8229 + | /* PythonServerStructureGenerator.kt:63 */
|
5779 8230 | /// :param header_string typing.Optional\[str\]:
|
5780 8231 | /// :param header_byte typing.Optional\[int\]:
|
5781 8232 | /// :param header_short typing.Optional\[int\]:
|
5782 8233 | /// :param header_integer typing.Optional\[int\]:
|
5783 8234 | /// :param header_long typing.Optional\[int\]:
|
5784 8235 | /// :param header_float typing.Optional\[float\]:
|
5785 8236 | /// :param header_double typing.Optional\[float\]:
|
5786 8237 | /// :param header_true_bool typing.Optional\[bool\]:
|
5787 8238 | /// :param header_false_bool typing.Optional\[bool\]:
|
5788 8239 | /// :param header_string_list typing.Optional\[typing.List\[str\]\]:
|
5789 8240 | /// :param header_string_set typing.Optional\[typing.List\[str\]\]:
|
5790 8241 | /// :param header_integer_list typing.Optional\[typing.List\[int\]\]:
|
5791 8242 | /// :param header_boolean_list typing.Optional\[typing.List\[bool\]\]:
|
5792 8243 | /// :param header_timestamp_list typing.Optional\[typing.List\[rest_json.types.DateTime\]\]:
|
5793 8244 | /// :param header_enum typing.Optional\[rest_json.model.FooEnum\]:
|
5794 8245 | /// :param header_enum_list typing.Optional\[typing.List\[rest_json.model.FooEnum\]\]:
|
5795 8246 | /// :param header_integer_enum typing.Optional\[int\]:
|
5796 8247 | /// :param header_integer_enum_list typing.Optional\[typing.List\[int\]\]:
|
5797 8248 | /// :rtype None:
|
8249 + | /* StructureGenerator.kt:197 */
|
5798 8250 | #[allow(missing_docs)] // documentation missing in model
|
8251 + | /* RustType.kt:516 */
|
5799 8252 | #[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
|
5800 - | pub struct InputAndOutputWithHeadersOutput {
|
8253 + | pub /* StructureGenerator.kt:201 */ struct InputAndOutputWithHeadersOutput {
|
8254 + | /* RustType.kt:516 */
|
5801 8255 | #[pyo3(get, set)]
|
8256 + | /* PythonServerStructureGenerator.kt:80 */
|
5802 8257 | /// :type typing.Optional\[str\]:
|
8258 + | /* StructureGenerator.kt:231 */
|
5803 8259 | #[allow(missing_docs)] // documentation missing in model
|
5804 8260 | pub header_string: ::std::option::Option<::std::string::String>,
|
8261 + | /* RustType.kt:516 */
|
5805 8262 | #[pyo3(get, set)]
|
8263 + | /* PythonServerStructureGenerator.kt:80 */
|
5806 8264 | /// :type typing.Optional\[int\]:
|
8265 + | /* StructureGenerator.kt:231 */
|
5807 8266 | #[allow(missing_docs)] // documentation missing in model
|
5808 8267 | pub header_byte: ::std::option::Option<i8>,
|
8268 + | /* RustType.kt:516 */
|
5809 8269 | #[pyo3(get, set)]
|
8270 + | /* PythonServerStructureGenerator.kt:80 */
|
5810 8271 | /// :type typing.Optional\[int\]:
|
8272 + | /* StructureGenerator.kt:231 */
|
5811 8273 | #[allow(missing_docs)] // documentation missing in model
|
5812 8274 | pub header_short: ::std::option::Option<i16>,
|
8275 + | /* RustType.kt:516 */
|
5813 8276 | #[pyo3(get, set)]
|
8277 + | /* PythonServerStructureGenerator.kt:80 */
|
5814 8278 | /// :type typing.Optional\[int\]:
|
8279 + | /* StructureGenerator.kt:231 */
|
5815 8280 | #[allow(missing_docs)] // documentation missing in model
|
5816 8281 | pub header_integer: ::std::option::Option<i32>,
|
8282 + | /* RustType.kt:516 */
|
5817 8283 | #[pyo3(get, set)]
|
8284 + | /* PythonServerStructureGenerator.kt:80 */
|
5818 8285 | /// :type typing.Optional\[int\]:
|
8286 + | /* StructureGenerator.kt:231 */
|
5819 8287 | #[allow(missing_docs)] // documentation missing in model
|
5820 8288 | pub header_long: ::std::option::Option<i64>,
|
8289 + | /* RustType.kt:516 */
|
5821 8290 | #[pyo3(get, set)]
|
8291 + | /* PythonServerStructureGenerator.kt:80 */
|
5822 8292 | /// :type typing.Optional\[float\]:
|
8293 + | /* StructureGenerator.kt:231 */
|
5823 8294 | #[allow(missing_docs)] // documentation missing in model
|
5824 8295 | pub header_float: ::std::option::Option<f32>,
|
8296 + | /* RustType.kt:516 */
|
5825 8297 | #[pyo3(get, set)]
|
8298 + | /* PythonServerStructureGenerator.kt:80 */
|
5826 8299 | /// :type typing.Optional\[float\]:
|
8300 + | /* StructureGenerator.kt:231 */
|
5827 8301 | #[allow(missing_docs)] // documentation missing in model
|
5828 8302 | pub header_double: ::std::option::Option<f64>,
|
8303 + | /* RustType.kt:516 */
|
5829 8304 | #[pyo3(get, set)]
|
8305 + | /* PythonServerStructureGenerator.kt:80 */
|
5830 8306 | /// :type typing.Optional\[bool\]:
|
8307 + | /* StructureGenerator.kt:231 */
|
5831 8308 | #[allow(missing_docs)] // documentation missing in model
|
5832 8309 | pub header_true_bool: ::std::option::Option<bool>,
|
8310 + | /* RustType.kt:516 */
|
5833 8311 | #[pyo3(get, set)]
|
8312 + | /* PythonServerStructureGenerator.kt:80 */
|
5834 8313 | /// :type typing.Optional\[bool\]:
|
8314 + | /* StructureGenerator.kt:231 */
|
5835 8315 | #[allow(missing_docs)] // documentation missing in model
|
5836 8316 | pub header_false_bool: ::std::option::Option<bool>,
|
8317 + | /* RustType.kt:516 */
|
5837 8318 | #[pyo3(get, set)]
|
8319 + | /* PythonServerStructureGenerator.kt:80 */
|
5838 8320 | /// :type typing.Optional\[typing.List\[str\]\]:
|
8321 + | /* StructureGenerator.kt:231 */
|
5839 8322 | #[allow(missing_docs)] // documentation missing in model
|
5840 8323 | pub header_string_list: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
8324 + | /* RustType.kt:516 */
|
5841 8325 | #[pyo3(get, set)]
|
8326 + | /* PythonServerStructureGenerator.kt:80 */
|
5842 8327 | /// :type typing.Optional\[typing.List\[str\]\]:
|
8328 + | /* StructureGenerator.kt:231 */
|
5843 8329 | #[allow(missing_docs)] // documentation missing in model
|
5844 8330 | pub header_string_set: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
8331 + | /* RustType.kt:516 */
|
5845 8332 | #[pyo3(get, set)]
|
8333 + | /* PythonServerStructureGenerator.kt:80 */
|
5846 8334 | /// :type typing.Optional\[typing.List\[int\]\]:
|
8335 + | /* StructureGenerator.kt:231 */
|
5847 8336 | #[allow(missing_docs)] // documentation missing in model
|
5848 8337 | pub header_integer_list: ::std::option::Option<::std::vec::Vec<i32>>,
|
8338 + | /* RustType.kt:516 */
|
5849 8339 | #[pyo3(get, set)]
|
8340 + | /* PythonServerStructureGenerator.kt:80 */
|
5850 8341 | /// :type typing.Optional\[typing.List\[bool\]\]:
|
8342 + | /* StructureGenerator.kt:231 */
|
5851 8343 | #[allow(missing_docs)] // documentation missing in model
|
5852 8344 | pub header_boolean_list: ::std::option::Option<::std::vec::Vec<bool>>,
|
8345 + | /* RustType.kt:516 */
|
5853 8346 | #[pyo3(get, set)]
|
8347 + | /* PythonServerStructureGenerator.kt:80 */
|
5854 8348 | /// :type typing.Optional\[typing.List\[rest_json.types.DateTime\]\]:
|
8349 + | /* StructureGenerator.kt:231 */
|
5855 8350 | #[allow(missing_docs)] // documentation missing in model
|
5856 8351 | pub header_timestamp_list:
|
5857 8352 | ::std::option::Option<::std::vec::Vec<::aws_smithy_http_server_python::types::DateTime>>,
|
8353 + | /* RustType.kt:516 */
|
5858 8354 | #[pyo3(get, set)]
|
8355 + | /* PythonServerStructureGenerator.kt:80 */
|
5859 8356 | /// :type typing.Optional\[rest_json.model.FooEnum\]:
|
8357 + | /* StructureGenerator.kt:231 */
|
5860 8358 | #[allow(missing_docs)] // documentation missing in model
|
5861 8359 | pub header_enum: ::std::option::Option<crate::model::FooEnum>,
|
8360 + | /* RustType.kt:516 */
|
5862 8361 | #[pyo3(get, set)]
|
8362 + | /* PythonServerStructureGenerator.kt:80 */
|
5863 8363 | /// :type typing.Optional\[typing.List\[rest_json.model.FooEnum\]\]:
|
8364 + | /* StructureGenerator.kt:231 */
|
5864 8365 | #[allow(missing_docs)] // documentation missing in model
|
5865 8366 | pub header_enum_list: ::std::option::Option<::std::vec::Vec<crate::model::FooEnum>>,
|
8367 + | /* RustType.kt:516 */
|
5866 8368 | #[pyo3(get, set)]
|
8369 + | /* PythonServerStructureGenerator.kt:80 */
|
5867 8370 | /// :type typing.Optional\[int\]:
|
8371 + | /* StructureGenerator.kt:231 */
|
5868 8372 | #[allow(missing_docs)] // documentation missing in model
|
5869 8373 | pub header_integer_enum: ::std::option::Option<i32>,
|
8374 + | /* RustType.kt:516 */
|
5870 8375 | #[pyo3(get, set)]
|
8376 + | /* PythonServerStructureGenerator.kt:80 */
|
5871 8377 | /// :type typing.Optional\[typing.List\[int\]\]:
|
8378 + | /* StructureGenerator.kt:231 */
|
5872 8379 | #[allow(missing_docs)] // documentation missing in model
|
5873 8380 | pub header_integer_enum_list: ::std::option::Option<::std::vec::Vec<i32>>,
|
8381 + | /* StructureGenerator.kt:201 */
|
5874 8382 | }
|
8383 + | /* StructureGenerator.kt:135 */
|
5875 8384 | impl InputAndOutputWithHeadersOutput {
|
8385 + | /* StructureGenerator.kt:231 */
|
5876 8386 | #[allow(missing_docs)] // documentation missing in model
|
8387 + | /* StructureGenerator.kt:166 */
|
5877 8388 | pub fn header_string(&self) -> ::std::option::Option<&str> {
|
8389 + | /* StructureGenerator.kt:169 */
|
5878 8390 | self.header_string.as_deref()
|
8391 + | /* StructureGenerator.kt:166 */
|
5879 8392 | }
|
8393 + | /* StructureGenerator.kt:231 */
|
5880 8394 | #[allow(missing_docs)] // documentation missing in model
|
8395 + | /* StructureGenerator.kt:166 */
|
5881 8396 | pub fn header_byte(&self) -> ::std::option::Option<i8> {
|
8397 + | /* StructureGenerator.kt:168 */
|
5882 8398 | self.header_byte
|
8399 + | /* StructureGenerator.kt:166 */
|
5883 8400 | }
|
8401 + | /* StructureGenerator.kt:231 */
|
5884 8402 | #[allow(missing_docs)] // documentation missing in model
|
8403 + | /* StructureGenerator.kt:166 */
|
5885 8404 | pub fn header_short(&self) -> ::std::option::Option<i16> {
|
8405 + | /* StructureGenerator.kt:168 */
|
5886 8406 | self.header_short
|
8407 + | /* StructureGenerator.kt:166 */
|
5887 8408 | }
|
8409 + | /* StructureGenerator.kt:231 */
|
5888 8410 | #[allow(missing_docs)] // documentation missing in model
|
8411 + | /* StructureGenerator.kt:166 */
|
5889 8412 | pub fn header_integer(&self) -> ::std::option::Option<i32> {
|
8413 + | /* StructureGenerator.kt:168 */
|
5890 8414 | self.header_integer
|
8415 + | /* StructureGenerator.kt:166 */
|
5891 8416 | }
|
8417 + | /* StructureGenerator.kt:231 */
|
5892 8418 | #[allow(missing_docs)] // documentation missing in model
|
8419 + | /* StructureGenerator.kt:166 */
|
5893 8420 | pub fn header_long(&self) -> ::std::option::Option<i64> {
|
8421 + | /* StructureGenerator.kt:168 */
|
5894 8422 | self.header_long
|
8423 + | /* StructureGenerator.kt:166 */
|
5895 8424 | }
|
8425 + | /* StructureGenerator.kt:231 */
|
5896 8426 | #[allow(missing_docs)] // documentation missing in model
|
8427 + | /* StructureGenerator.kt:166 */
|
5897 8428 | pub fn header_float(&self) -> ::std::option::Option<f32> {
|
8429 + | /* StructureGenerator.kt:168 */
|
5898 8430 | self.header_float
|
8431 + | /* StructureGenerator.kt:166 */
|
5899 8432 | }
|
8433 + | /* StructureGenerator.kt:231 */
|
5900 8434 | #[allow(missing_docs)] // documentation missing in model
|
8435 + | /* StructureGenerator.kt:166 */
|
5901 8436 | pub fn header_double(&self) -> ::std::option::Option<f64> {
|
8437 + | /* StructureGenerator.kt:168 */
|
5902 8438 | self.header_double
|
8439 + | /* StructureGenerator.kt:166 */
|
5903 8440 | }
|
8441 + | /* StructureGenerator.kt:231 */
|
5904 8442 | #[allow(missing_docs)] // documentation missing in model
|
8443 + | /* StructureGenerator.kt:166 */
|
5905 8444 | pub fn header_true_bool(&self) -> ::std::option::Option<bool> {
|
8445 + | /* StructureGenerator.kt:168 */
|
5906 8446 | self.header_true_bool
|
8447 + | /* StructureGenerator.kt:166 */
|
5907 8448 | }
|
8449 + | /* StructureGenerator.kt:231 */
|
5908 8450 | #[allow(missing_docs)] // documentation missing in model
|
8451 + | /* StructureGenerator.kt:166 */
|
5909 8452 | pub fn header_false_bool(&self) -> ::std::option::Option<bool> {
|
8453 + | /* StructureGenerator.kt:168 */
|
5910 8454 | self.header_false_bool
|
8455 + | /* StructureGenerator.kt:166 */
|
5911 8456 | }
|
8457 + | /* StructureGenerator.kt:231 */
|
5912 8458 | #[allow(missing_docs)] // documentation missing in model
|
8459 + | /* StructureGenerator.kt:166 */
|
5913 8460 | pub fn header_string_list(&self) -> ::std::option::Option<&[::std::string::String]> {
|
8461 + | /* StructureGenerator.kt:169 */
|
5914 8462 | self.header_string_list.as_deref()
|
8463 + | /* StructureGenerator.kt:166 */
|
5915 8464 | }
|
8465 + | /* StructureGenerator.kt:231 */
|
5916 8466 | #[allow(missing_docs)] // documentation missing in model
|
8467 + | /* StructureGenerator.kt:166 */
|
5917 8468 | pub fn header_string_set(&self) -> ::std::option::Option<&[::std::string::String]> {
|
8469 + | /* StructureGenerator.kt:169 */
|
5918 8470 | self.header_string_set.as_deref()
|
8471 + | /* StructureGenerator.kt:166 */
|
5919 8472 | }
|
8473 + | /* StructureGenerator.kt:231 */
|
5920 8474 | #[allow(missing_docs)] // documentation missing in model
|
8475 + | /* StructureGenerator.kt:166 */
|
5921 8476 | pub fn header_integer_list(&self) -> ::std::option::Option<&[i32]> {
|
8477 + | /* StructureGenerator.kt:169 */
|
5922 8478 | self.header_integer_list.as_deref()
|
8479 + | /* StructureGenerator.kt:166 */
|
5923 8480 | }
|
8481 + | /* StructureGenerator.kt:231 */
|
5924 8482 | #[allow(missing_docs)] // documentation missing in model
|
8483 + | /* StructureGenerator.kt:166 */
|
5925 8484 | pub fn header_boolean_list(&self) -> ::std::option::Option<&[bool]> {
|
8485 + | /* StructureGenerator.kt:169 */
|
5926 8486 | self.header_boolean_list.as_deref()
|
8487 + | /* StructureGenerator.kt:166 */
|
5927 8488 | }
|
8489 + | /* StructureGenerator.kt:231 */
|
5928 8490 | #[allow(missing_docs)] // documentation missing in model
|
8491 + | /* StructureGenerator.kt:166 */
|
5929 8492 | pub fn header_timestamp_list(
|
5930 8493 | &self,
|
5931 8494 | ) -> ::std::option::Option<&[::aws_smithy_http_server_python::types::DateTime]> {
|
8495 + | /* StructureGenerator.kt:169 */
|
5932 8496 | self.header_timestamp_list.as_deref()
|
8497 + | /* StructureGenerator.kt:166 */
|
5933 8498 | }
|
8499 + | /* StructureGenerator.kt:231 */
|
5934 8500 | #[allow(missing_docs)] // documentation missing in model
|
8501 + | /* StructureGenerator.kt:166 */
|
5935 8502 | pub fn header_enum(&self) -> ::std::option::Option<&crate::model::FooEnum> {
|
8503 + | /* StructureGenerator.kt:170 */
|
5936 8504 | self.header_enum.as_ref()
|
8505 + | /* StructureGenerator.kt:166 */
|
5937 8506 | }
|
8507 + | /* StructureGenerator.kt:231 */
|
5938 8508 | #[allow(missing_docs)] // documentation missing in model
|
8509 + | /* StructureGenerator.kt:166 */
|
5939 8510 | pub fn header_enum_list(&self) -> ::std::option::Option<&[crate::model::FooEnum]> {
|
8511 + | /* StructureGenerator.kt:169 */
|
5940 8512 | self.header_enum_list.as_deref()
|
8513 + | /* StructureGenerator.kt:166 */
|
5941 8514 | }
|
8515 + | /* StructureGenerator.kt:231 */
|
5942 8516 | #[allow(missing_docs)] // documentation missing in model
|
8517 + | /* StructureGenerator.kt:166 */
|
5943 8518 | pub fn header_integer_enum(&self) -> ::std::option::Option<i32> {
|
8519 + | /* StructureGenerator.kt:168 */
|
5944 8520 | self.header_integer_enum
|
8521 + | /* StructureGenerator.kt:166 */
|
5945 8522 | }
|
8523 + | /* StructureGenerator.kt:231 */
|
5946 8524 | #[allow(missing_docs)] // documentation missing in model
|
8525 + | /* StructureGenerator.kt:166 */
|
5947 8526 | pub fn header_integer_enum_list(&self) -> ::std::option::Option<&[i32]> {
|
8527 + | /* StructureGenerator.kt:169 */
|
5948 8528 | self.header_integer_enum_list.as_deref()
|
8529 + | /* StructureGenerator.kt:166 */
|
5949 8530 | }
|
8531 + | /* StructureGenerator.kt:135 */
|
5950 8532 | }
|
8533 + | /* RustType.kt:516 */
|
5951 8534 | #[allow(clippy::new_without_default)]
|
8535 + | /* RustType.kt:516 */
|
5952 8536 | #[allow(clippy::too_many_arguments)]
|
8537 + | /* RustType.kt:516 */
|
5953 8538 | #[::pyo3::pymethods]
|
8539 + | /* PythonServerStructureGenerator.kt:88 */
|
5954 8540 | impl InputAndOutputWithHeadersOutput {
|
5955 8541 | #[new]
|
5956 8542 | pub fn new(
|
5957 8543 | header_string: ::std::option::Option<::std::string::String>,
|
5958 8544 | header_byte: ::std::option::Option<i8>,
|
5959 8545 | header_short: ::std::option::Option<i16>,
|
5960 8546 | header_integer: ::std::option::Option<i32>,
|
5961 8547 | header_long: ::std::option::Option<i64>,
|
5962 8548 | header_float: ::std::option::Option<f32>,
|
5963 8549 | header_double: ::std::option::Option<f64>,
|
5964 8550 | header_true_bool: ::std::option::Option<bool>,
|
5965 8551 | header_false_bool: ::std::option::Option<bool>,
|
5966 8552 | header_string_list: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
5967 8553 | header_string_set: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
5968 8554 | header_integer_list: ::std::option::Option<::std::vec::Vec<i32>>,
|
5969 8555 | header_boolean_list: ::std::option::Option<::std::vec::Vec<bool>>,
|
5970 8556 | header_timestamp_list: ::std::option::Option<
|
5971 8557 | ::std::vec::Vec<::aws_smithy_http_server_python::types::DateTime>,
|
5972 8558 | >,
|
5973 8559 | header_enum: ::std::option::Option<crate::model::FooEnum>,
|
5974 8560 | header_enum_list: ::std::option::Option<::std::vec::Vec<crate::model::FooEnum>>,
|
5975 8561 | header_integer_enum: ::std::option::Option<i32>,
|
5976 8562 | header_integer_enum_list: ::std::option::Option<::std::vec::Vec<i32>>,
|
5977 8563 | ) -> Self {
|
5978 8564 | Self {
|
5979 8565 | header_string,
|
5980 8566 | header_byte,
|
5981 8567 | header_short,
|
5982 8568 | header_integer,
|
5983 8569 | header_long,
|
5984 8570 | header_float,
|
5985 8571 | header_double,
|
5986 8572 | header_true_bool,
|
5987 8573 | header_false_bool,
|
5988 8574 | header_string_list,
|
5989 8575 | header_string_set,
|
5990 8576 | header_integer_list,
|
5991 8577 | header_boolean_list,
|
5992 8578 | header_timestamp_list,
|
5993 8579 | header_enum,
|
5994 8580 | header_enum_list,
|
5995 8581 | header_integer_enum,
|
5996 8582 | header_integer_enum_list,
|
5997 8583 | }
|
5998 8584 | }
|
5999 8585 | fn __repr__(&self) -> String {
|
6000 8586 | format!("{self:?}")
|
6001 8587 | }
|
6002 8588 | fn __str__(&self) -> String {
|
6003 8589 | format!("{self:?}")
|
6004 8590 | }
|
6005 8591 | }
|
8592 + | /* PythonServerStructureGenerator.kt:111 */
|
6006 8593 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<InputAndOutputWithHeadersOutput> {
|
6007 8594 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
6008 8595 | ob.extract::<InputAndOutputWithHeadersOutput>()
|
6009 8596 | .map(Box::new)
|
6010 8597 | }
|
6011 8598 | }
|
6012 8599 |
|
6013 8600 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<InputAndOutputWithHeadersOutput> {
|
6014 8601 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
6015 8602 | (*self).into_py(py)
|
6016 8603 | }
|
6017 8604 | }
|
8605 + | /* ServerCodegenVisitor.kt:370 */
|
6018 8606 | impl InputAndOutputWithHeadersOutput {
|
6019 - | /// Creates a new builder-style object to manufacture [`InputAndOutputWithHeadersOutput`](crate::output::InputAndOutputWithHeadersOutput).
|
8607 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`InputAndOutputWithHeadersOutput`](crate::output::InputAndOutputWithHeadersOutput).
|
8608 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
6020 8609 | pub fn builder() -> crate::output::input_and_output_with_headers_output::Builder {
|
8610 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
6021 8611 | crate::output::input_and_output_with_headers_output::Builder::default()
|
8612 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
6022 8613 | }
|
8614 + | /* ServerCodegenVisitor.kt:370 */
|
6023 8615 | }
|
6024 8616 |
|
8617 + | /* RustType.kt:516 */
|
6025 8618 | #[::pyo3::pyclass]
|
8619 + | /* PythonServerStructureGenerator.kt:63 */
|
6026 8620 | /// :rtype None:
|
8621 + | /* StructureGenerator.kt:197 */
|
6027 8622 | #[allow(missing_docs)] // documentation missing in model
|
8623 + | /* RustType.kt:516 */
|
6028 8624 | #[derive(
|
6029 8625 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
6030 8626 | )]
|
6031 - | pub struct UnitInputAndOutputOutput {}
|
8627 + | pub /* StructureGenerator.kt:201 */ struct UnitInputAndOutputOutput {/* StructureGenerator.kt:201 */}
|
8628 + | /* RustType.kt:516 */
|
6032 8629 | #[allow(clippy::new_without_default)]
|
8630 + | /* RustType.kt:516 */
|
6033 8631 | #[allow(clippy::too_many_arguments)]
|
8632 + | /* RustType.kt:516 */
|
6034 8633 | #[::pyo3::pymethods]
|
8634 + | /* PythonServerStructureGenerator.kt:88 */
|
6035 8635 | impl UnitInputAndOutputOutput {
|
6036 8636 | #[new]
|
6037 8637 | pub fn new() -> Self {
|
6038 8638 | Self {}
|
6039 8639 | }
|
6040 8640 | fn __repr__(&self) -> String {
|
6041 8641 | format!("{self:?}")
|
6042 8642 | }
|
6043 8643 | fn __str__(&self) -> String {
|
6044 8644 | format!("{self:?}")
|
6045 8645 | }
|
6046 8646 | }
|
8647 + | /* PythonServerStructureGenerator.kt:111 */
|
6047 8648 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<UnitInputAndOutputOutput> {
|
6048 8649 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
6049 8650 | ob.extract::<UnitInputAndOutputOutput>().map(Box::new)
|
6050 8651 | }
|
6051 8652 | }
|
6052 8653 |
|
6053 8654 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<UnitInputAndOutputOutput> {
|
6054 8655 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
6055 8656 | (*self).into_py(py)
|
6056 8657 | }
|
6057 8658 | }
|
8659 + | /* ServerCodegenVisitor.kt:370 */
|
6058 8660 | impl UnitInputAndOutputOutput {
|
6059 - | /// Creates a new builder-style object to manufacture [`UnitInputAndOutputOutput`](crate::output::UnitInputAndOutputOutput).
|
8661 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`UnitInputAndOutputOutput`](crate::output::UnitInputAndOutputOutput).
|
8662 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
6060 8663 | pub fn builder() -> crate::output::unit_input_and_output_output::Builder {
|
8664 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
6061 8665 | crate::output::unit_input_and_output_output::Builder::default()
|
8666 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
6062 8667 | }
|
8668 + | /* ServerCodegenVisitor.kt:370 */
|
6063 8669 | }
|
6064 8670 |
|
8671 + | /* RustType.kt:516 */
|
6065 8672 | #[::pyo3::pyclass]
|
8673 + | /* PythonServerStructureGenerator.kt:63 */
|
6066 8674 | /// :rtype None:
|
8675 + | /* StructureGenerator.kt:197 */
|
6067 8676 | #[allow(missing_docs)] // documentation missing in model
|
8677 + | /* RustType.kt:516 */
|
6068 8678 | #[derive(
|
6069 8679 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
6070 8680 | )]
|
6071 - | pub struct EmptyInputAndEmptyOutputOutput {}
|
8681 + | pub /* StructureGenerator.kt:201 */ struct EmptyInputAndEmptyOutputOutput {/* StructureGenerator.kt:201 */}
|
8682 + | /* RustType.kt:516 */
|
6072 8683 | #[allow(clippy::new_without_default)]
|
8684 + | /* RustType.kt:516 */
|
6073 8685 | #[allow(clippy::too_many_arguments)]
|
8686 + | /* RustType.kt:516 */
|
6074 8687 | #[::pyo3::pymethods]
|
8688 + | /* PythonServerStructureGenerator.kt:88 */
|
6075 8689 | impl EmptyInputAndEmptyOutputOutput {
|
6076 8690 | #[new]
|
6077 8691 | pub fn new() -> Self {
|
6078 8692 | Self {}
|
6079 8693 | }
|
6080 8694 | fn __repr__(&self) -> String {
|
6081 8695 | format!("{self:?}")
|
6082 8696 | }
|
6083 8697 | fn __str__(&self) -> String {
|
6084 8698 | format!("{self:?}")
|
6085 8699 | }
|
6086 8700 | }
|
8701 + | /* PythonServerStructureGenerator.kt:111 */
|
6087 8702 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<EmptyInputAndEmptyOutputOutput> {
|
6088 8703 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
6089 8704 | ob.extract::<EmptyInputAndEmptyOutputOutput>().map(Box::new)
|
6090 8705 | }
|
6091 8706 | }
|
6092 8707 |
|
6093 8708 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<EmptyInputAndEmptyOutputOutput> {
|
6094 8709 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
6095 8710 | (*self).into_py(py)
|
6096 8711 | }
|
6097 8712 | }
|
8713 + | /* ServerCodegenVisitor.kt:370 */
|
6098 8714 | impl EmptyInputAndEmptyOutputOutput {
|
6099 - | /// Creates a new builder-style object to manufacture [`EmptyInputAndEmptyOutputOutput`](crate::output::EmptyInputAndEmptyOutputOutput).
|
8715 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`EmptyInputAndEmptyOutputOutput`](crate::output::EmptyInputAndEmptyOutputOutput).
|
8716 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
6100 8717 | pub fn builder() -> crate::output::empty_input_and_empty_output_output::Builder {
|
8718 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
6101 8719 | crate::output::empty_input_and_empty_output_output::Builder::default()
|
8720 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
6102 8721 | }
|
8722 + | /* ServerCodegenVisitor.kt:370 */
|
6103 8723 | }
|
6104 8724 |
|
8725 + | /* RustType.kt:516 */
|
6105 8726 | #[::pyo3::pyclass]
|
8727 + | /* PythonServerStructureGenerator.kt:63 */
|
6106 8728 | /// :rtype None:
|
8729 + | /* StructureGenerator.kt:197 */
|
6107 8730 | #[allow(missing_docs)] // documentation missing in model
|
8731 + | /* RustType.kt:516 */
|
6108 8732 | #[derive(
|
6109 8733 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
6110 8734 | )]
|
6111 - | pub struct NoInputAndOutputOutput {}
|
8735 + | pub /* StructureGenerator.kt:201 */ struct NoInputAndOutputOutput {/* StructureGenerator.kt:201 */}
|
8736 + | /* RustType.kt:516 */
|
6112 8737 | #[allow(clippy::new_without_default)]
|
8738 + | /* RustType.kt:516 */
|
6113 8739 | #[allow(clippy::too_many_arguments)]
|
8740 + | /* RustType.kt:516 */
|
6114 8741 | #[::pyo3::pymethods]
|
8742 + | /* PythonServerStructureGenerator.kt:88 */
|
6115 8743 | impl NoInputAndOutputOutput {
|
6116 8744 | #[new]
|
6117 8745 | pub fn new() -> Self {
|
6118 8746 | Self {}
|
6119 8747 | }
|
6120 8748 | fn __repr__(&self) -> String {
|
6121 8749 | format!("{self:?}")
|
6122 8750 | }
|
6123 8751 | fn __str__(&self) -> String {
|
6124 8752 | format!("{self:?}")
|
6125 8753 | }
|
6126 8754 | }
|
8755 + | /* PythonServerStructureGenerator.kt:111 */
|
6127 8756 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<NoInputAndOutputOutput> {
|
6128 8757 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
6129 8758 | ob.extract::<NoInputAndOutputOutput>().map(Box::new)
|
6130 8759 | }
|
6131 8760 | }
|
6132 8761 |
|
6133 8762 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<NoInputAndOutputOutput> {
|
6134 8763 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
6135 8764 | (*self).into_py(py)
|
6136 8765 | }
|
6137 8766 | }
|
8767 + | /* ServerCodegenVisitor.kt:370 */
|
6138 8768 | impl NoInputAndOutputOutput {
|
6139 - | /// Creates a new builder-style object to manufacture [`NoInputAndOutputOutput`](crate::output::NoInputAndOutputOutput).
|
8769 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`NoInputAndOutputOutput`](crate::output::NoInputAndOutputOutput).
|
8770 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
6140 8771 | pub fn builder() -> crate::output::no_input_and_output_output::Builder {
|
8772 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
6141 8773 | crate::output::no_input_and_output_output::Builder::default()
|
8774 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
6142 8775 | }
|
8776 + | /* ServerCodegenVisitor.kt:370 */
|
6143 8777 | }
|
6144 8778 |
|
8779 + | /* RustType.kt:516 */
|
6145 8780 | #[::pyo3::pyclass]
|
8781 + | /* PythonServerStructureGenerator.kt:63 */
|
6146 8782 | /// :rtype None:
|
8783 + | /* StructureGenerator.kt:197 */
|
6147 8784 | #[allow(missing_docs)] // documentation missing in model
|
8785 + | /* RustType.kt:516 */
|
6148 8786 | #[derive(
|
6149 8787 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
6150 8788 | )]
|
6151 - | pub struct NoInputAndNoOutputOutput {}
|
8789 + | pub /* StructureGenerator.kt:201 */ struct NoInputAndNoOutputOutput {/* StructureGenerator.kt:201 */}
|
8790 + | /* RustType.kt:516 */
|
6152 8791 | #[allow(clippy::new_without_default)]
|
8792 + | /* RustType.kt:516 */
|
6153 8793 | #[allow(clippy::too_many_arguments)]
|
8794 + | /* RustType.kt:516 */
|
6154 8795 | #[::pyo3::pymethods]
|
8796 + | /* PythonServerStructureGenerator.kt:88 */
|
6155 8797 | impl NoInputAndNoOutputOutput {
|
6156 8798 | #[new]
|
6157 8799 | pub fn new() -> Self {
|
6158 8800 | Self {}
|
6159 8801 | }
|
6160 8802 | fn __repr__(&self) -> String {
|
6161 8803 | format!("{self:?}")
|
6162 8804 | }
|
6163 8805 | fn __str__(&self) -> String {
|
6164 8806 | format!("{self:?}")
|
6165 8807 | }
|
6166 8808 | }
|
8809 + | /* PythonServerStructureGenerator.kt:111 */
|
6167 8810 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<NoInputAndNoOutputOutput> {
|
6168 8811 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
6169 8812 | ob.extract::<NoInputAndNoOutputOutput>().map(Box::new)
|
6170 8813 | }
|
6171 8814 | }
|
6172 8815 |
|
6173 8816 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<NoInputAndNoOutputOutput> {
|
6174 8817 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
6175 8818 | (*self).into_py(py)
|
6176 8819 | }
|
6177 8820 | }
|
8821 + | /* ServerCodegenVisitor.kt:370 */
|
6178 8822 | impl NoInputAndNoOutputOutput {
|
6179 - | /// Creates a new builder-style object to manufacture [`NoInputAndNoOutputOutput`](crate::output::NoInputAndNoOutputOutput).
|
8823 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`NoInputAndNoOutputOutput`](crate::output::NoInputAndNoOutputOutput).
|
8824 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
6180 8825 | pub fn builder() -> crate::output::no_input_and_no_output_output::Builder {
|
8826 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
6181 8827 | crate::output::no_input_and_no_output_output::Builder::default()
|
8828 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
6182 8829 | }
|
8830 + | /* ServerCodegenVisitor.kt:370 */
|
6183 8831 | }
|
6184 - | /// See [`OperationWithNestedStructureOutput`](crate::output::OperationWithNestedStructureOutput).
|
8832 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`OperationWithNestedStructureOutput`](crate::output::OperationWithNestedStructureOutput).
|
6185 8833 | pub mod operation_with_nested_structure_output {
|
6186 8834 |
|
8835 + | /* RustType.kt:516 */
|
6187 8836 | #[derive(::std::cmp::PartialEq, ::std::fmt::Debug)]
|
6188 - | /// Holds one variant for each of the ways the builder can fail.
|
6189 - |
|
8837 + | /// /* ServerBuilderConstraintViolations.kt:72 */Holds one variant for each of the ways the builder can fail.
|
8838 + | /* ServerBuilderConstraintViolations.kt:75 */
|
6190 8839 | #[allow(clippy::enum_variant_names)]
|
6191 8840 | pub enum ConstraintViolation {
|
6192 - | /// `dialog` was not provided but it is required when building `OperationWithNestedStructureOutput`.
|
8841 + | /// /* ServerBuilderConstraintViolations.kt:138 */`dialog` was not provided but it is required when building `OperationWithNestedStructureOutput`.
|
8842 + | /* ServerBuilderConstraintViolations.kt:143 */
|
6193 8843 | MissingDialog,
|
8844 + | /* ServerBuilderConstraintViolations.kt:75 */
|
6194 8845 | }
|
8846 + | /* ServerBuilderConstraintViolations.kt:117 */
|
6195 8847 | impl ::std::fmt::Display for ConstraintViolation {
|
8848 + | /* ServerBuilderConstraintViolations.kt:118 */
|
6196 8849 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
8850 + | /* ServerBuilderConstraintViolations.kt:119 */
|
6197 8851 | match self {
|
6198 - | ConstraintViolation::MissingDialog => write!(f, "`dialog` was not provided but it is required when building `OperationWithNestedStructureOutput`"),
|
6199 - | }
|
8852 + | /* ServerBuilderConstraintViolations.kt:127 */ConstraintViolation::MissingDialog => write!(f, "`dialog` was not provided but it is required when building `OperationWithNestedStructureOutput`"),
|
8853 + | /* ServerBuilderConstraintViolations.kt:119 */}
|
8854 + | /* ServerBuilderConstraintViolations.kt:118 */
|
6200 8855 | }
|
8856 + | /* ServerBuilderConstraintViolations.kt:117 */
|
6201 8857 | }
|
8858 + | /* ServerBuilderConstraintViolations.kt:84 */
|
6202 8859 | impl ::std::error::Error for ConstraintViolation {}
|
8860 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:254 */
|
6203 8861 | impl ::std::convert::TryFrom<Builder> for crate::output::OperationWithNestedStructureOutput {
|
6204 8862 | type Error = ConstraintViolation;
|
6205 8863 |
|
6206 8864 | fn try_from(builder: Builder) -> ::std::result::Result<Self, Self::Error> {
|
6207 8865 | builder.build()
|
6208 8866 | }
|
6209 8867 | }
|
6210 - | /// A builder for [`OperationWithNestedStructureOutput`](crate::output::OperationWithNestedStructureOutput).
|
8868 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`OperationWithNestedStructureOutput`](crate::output::OperationWithNestedStructureOutput).
|
8869 + | /* RustType.kt:516 */
|
6211 8870 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
8871 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
6212 8872 | pub struct Builder {
|
8873 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6213 8874 | pub(crate) dialog: ::std::option::Option<crate::model::Dialog>,
|
8875 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6214 8876 | pub(crate) dialog_list: ::std::option::Option<::std::vec::Vec<crate::model::Dialog>>,
|
8877 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6215 8878 | pub(crate) dialog_map: ::std::option::Option<
|
6216 8879 | ::std::collections::HashMap<::std::string::String, crate::model::Dialog>,
|
6217 8880 | >,
|
8881 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
6218 8882 | }
|
8883 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
6219 8884 | impl Builder {
|
8885 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6220 8886 | #[allow(missing_docs)] // documentation missing in model
|
8887 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6221 8888 | pub fn dialog(mut self, input: crate::model::Dialog) -> Self {
|
6222 - | self.dialog = Some(input);
|
8889 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
8890 + | self.dialog =
|
8891 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
8892 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
8893 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
8894 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6223 8895 | self
|
8896 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6224 8897 | }
|
8898 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6225 8899 | #[allow(missing_docs)] // documentation missing in model
|
8900 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6226 8901 | pub fn dialog_list(mut self, input: ::std::vec::Vec<crate::model::Dialog>) -> Self {
|
6227 - | self.dialog_list = Some(input);
|
8902 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
8903 + | self.dialog_list =
|
8904 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
8905 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
8906 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
8907 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6228 8908 | self
|
8909 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6229 8910 | }
|
8911 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6230 8912 | #[allow(missing_docs)] // documentation missing in model
|
8913 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6231 8914 | pub fn dialog_map(
|
6232 8915 | mut self,
|
6233 8916 | input: ::std::collections::HashMap<::std::string::String, crate::model::Dialog>,
|
6234 8917 | ) -> Self {
|
6235 - | self.dialog_map = Some(input);
|
8918 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
8919 + | self.dialog_map =
|
8920 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
8921 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
8922 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
8923 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6236 8924 | self
|
8925 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6237 8926 | }
|
6238 - | /// Consumes the builder and constructs a [`OperationWithNestedStructureOutput`](crate::output::OperationWithNestedStructureOutput).
|
6239 - | ///
|
8927 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`OperationWithNestedStructureOutput`](crate::output::OperationWithNestedStructureOutput).
|
8928 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:152 */
|
6240 8929 | /// The builder fails to construct a [`OperationWithNestedStructureOutput`](crate::output::OperationWithNestedStructureOutput) if you do not provide a value for all non-`Option`al members.
|
6241 8930 | ///
|
8931 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
6242 8932 | pub fn build(
|
6243 8933 | self,
|
6244 8934 | ) -> Result<crate::output::OperationWithNestedStructureOutput, ConstraintViolation>
|
6245 8935 | {
|
6246 8936 | self.build_enforcing_required_and_enum_traits()
|
6247 8937 | }
|
8938 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
6248 8939 | fn build_enforcing_required_and_enum_traits(
|
6249 8940 | self,
|
6250 8941 | ) -> Result<crate::output::OperationWithNestedStructureOutput, ConstraintViolation>
|
6251 8942 | {
|
6252 - | Ok(crate::output::OperationWithNestedStructureOutput {
|
6253 - | dialog: self.dialog.ok_or(ConstraintViolation::MissingDialog)?,
|
6254 - | dialog_list: self.dialog_list.unwrap_or_else(
|
6255 - | #[allow(clippy::redundant_closure)]
|
6256 - | || ::std::vec::Vec::new(),
|
6257 - | ),
|
6258 - | dialog_map: self.dialog_map.unwrap_or_else(
|
6259 - | #[allow(clippy::redundant_closure)]
|
6260 - | || ::std::collections::HashMap::new(),
|
6261 - | ),
|
6262 - | })
|
6263 - | }
|
6264 - | }
|
6265 - | }
|
6266 - | /// See [`OperationWithDefaultsOutput`](crate::output::OperationWithDefaultsOutput).
|
8943 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:175 */
|
8944 + | Ok(
|
8945 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8946 + | crate::output::OperationWithNestedStructureOutput {
|
8947 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8948 + | dialog: self
|
8949 + | .dialog
|
8950 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:202 */
|
8951 + | .ok_or(ConstraintViolation::MissingDialog)?,
|
8952 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8953 + | dialog_list: self
|
8954 + | .dialog_list
|
8955 + | /* ServerBuilderGeneratorCommon.kt:100 */
|
8956 + | .unwrap_or_default(),
|
8957 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8958 + | dialog_map: self
|
8959 + | .dialog_map
|
8960 + | /* ServerBuilderGeneratorCommon.kt:100 */
|
8961 + | .unwrap_or_default(),
|
8962 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8963 + | }, /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:175 */
|
8964 + | )
|
8965 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8966 + | }
|
8967 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8968 + | }
|
8969 + |
|
8970 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
8971 + | }
|
8972 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`OperationWithDefaultsOutput`](crate::output::OperationWithDefaultsOutput).
|
6267 8973 | pub mod operation_with_defaults_output {
|
6268 8974 |
|
8975 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
6269 8976 | impl ::std::convert::From<Builder> for crate::output::OperationWithDefaultsOutput {
|
6270 8977 | fn from(builder: Builder) -> Self {
|
6271 8978 | builder.build()
|
6272 8979 | }
|
6273 8980 | }
|
6274 - | /// A builder for [`OperationWithDefaultsOutput`](crate::output::OperationWithDefaultsOutput).
|
8981 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`OperationWithDefaultsOutput`](crate::output::OperationWithDefaultsOutput).
|
8982 + | /* RustType.kt:516 */
|
6275 8983 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
8984 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
6276 8985 | pub struct Builder {
|
8986 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6277 8987 | pub(crate) default_string: ::std::option::Option<::std::string::String>,
|
8988 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6278 8989 | pub(crate) default_boolean: ::std::option::Option<bool>,
|
8990 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6279 8991 | pub(crate) default_list: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
8992 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6280 8993 | pub(crate) default_document_map:
|
6281 8994 | ::std::option::Option<::aws_smithy_http_server_python::types::Document>,
|
8995 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6282 8996 | pub(crate) default_document_string:
|
6283 8997 | ::std::option::Option<::aws_smithy_http_server_python::types::Document>,
|
8998 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6284 8999 | pub(crate) default_document_boolean:
|
6285 9000 | ::std::option::Option<::aws_smithy_http_server_python::types::Document>,
|
9001 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6286 9002 | pub(crate) default_document_list:
|
6287 9003 | ::std::option::Option<::aws_smithy_http_server_python::types::Document>,
|
9004 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6288 9005 | pub(crate) default_null_document:
|
6289 9006 | ::std::option::Option<::aws_smithy_http_server_python::types::Document>,
|
9007 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6290 9008 | pub(crate) default_timestamp:
|
6291 9009 | ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
9010 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6292 9011 | pub(crate) default_blob:
|
6293 9012 | ::std::option::Option<::aws_smithy_http_server_python::types::Blob>,
|
9013 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6294 9014 | pub(crate) default_byte: ::std::option::Option<i8>,
|
9015 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6295 9016 | pub(crate) default_short: ::std::option::Option<i16>,
|
9017 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6296 9018 | pub(crate) default_integer: ::std::option::Option<i32>,
|
9019 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6297 9020 | pub(crate) default_long: ::std::option::Option<i64>,
|
9021 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6298 9022 | pub(crate) default_float: ::std::option::Option<f32>,
|
9023 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6299 9024 | pub(crate) default_double: ::std::option::Option<f64>,
|
9025 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6300 9026 | pub(crate) default_map: ::std::option::Option<
|
6301 9027 | ::std::collections::HashMap<::std::string::String, ::std::string::String>,
|
6302 9028 | >,
|
9029 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6303 9030 | pub(crate) default_enum: ::std::option::Option<crate::model::TestEnum>,
|
9031 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6304 9032 | pub(crate) default_int_enum: ::std::option::Option<i32>,
|
9033 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6305 9034 | pub(crate) empty_string: ::std::option::Option<::std::string::String>,
|
9035 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6306 9036 | pub(crate) false_boolean: ::std::option::Option<bool>,
|
9037 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6307 9038 | pub(crate) empty_blob: ::std::option::Option<::aws_smithy_http_server_python::types::Blob>,
|
9039 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6308 9040 | pub(crate) zero_byte: ::std::option::Option<i8>,
|
9041 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6309 9042 | pub(crate) zero_short: ::std::option::Option<i16>,
|
9043 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6310 9044 | pub(crate) zero_integer: ::std::option::Option<i32>,
|
9045 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6311 9046 | pub(crate) zero_long: ::std::option::Option<i64>,
|
9047 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6312 9048 | pub(crate) zero_float: ::std::option::Option<f32>,
|
9049 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6313 9050 | pub(crate) zero_double: ::std::option::Option<f64>,
|
9051 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
6314 9052 | }
|
9053 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
6315 9054 | impl Builder {
|
9055 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6316 9056 | #[allow(missing_docs)] // documentation missing in model
|
9057 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6317 9058 | pub fn default_string(mut self, input: ::std::string::String) -> Self {
|
6318 - | self.default_string = Some(input);
|
9059 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9060 + | self.default_string =
|
9061 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
9062 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9063 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
9064 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6319 9065 | self
|
9066 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6320 9067 | }
|
9068 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6321 9069 | #[allow(missing_docs)] // documentation missing in model
|
9070 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6322 9071 | pub fn default_boolean(mut self, input: bool) -> Self {
|
6323 - | self.default_boolean = Some(input);
|
9072 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9073 + | self.default_boolean =
|
9074 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
9075 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9076 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
9077 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6324 9078 | self
|
9079 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6325 9080 | }
|
9081 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6326 9082 | #[allow(missing_docs)] // documentation missing in model
|
9083 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6327 9084 | pub fn default_list(mut self, input: ::std::vec::Vec<::std::string::String>) -> Self {
|
6328 - | self.default_list = Some(input);
|
9085 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9086 + | self.default_list =
|
9087 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
9088 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9089 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
9090 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6329 9091 | self
|
9092 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6330 9093 | }
|
9094 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6331 9095 | #[allow(missing_docs)] // documentation missing in model
|
9096 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6332 9097 | pub fn default_document_map(
|
6333 9098 | mut self,
|
6334 9099 | input: ::aws_smithy_http_server_python::types::Document,
|
6335 9100 | ) -> Self {
|
6336 - | self.default_document_map = Some(input);
|
9101 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9102 + | self.default_document_map =
|
9103 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
9104 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9105 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
9106 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6337 9107 | self
|
9108 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6338 9109 | }
|
9110 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6339 9111 | #[allow(missing_docs)] // documentation missing in model
|
9112 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6340 9113 | pub fn default_document_string(
|
6341 9114 | mut self,
|
6342 9115 | input: ::aws_smithy_http_server_python::types::Document,
|
6343 9116 | ) -> Self {
|
6344 - | self.default_document_string = Some(input);
|
9117 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9118 + | self.default_document_string =
|
9119 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
9120 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9121 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
9122 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6345 9123 | self
|
9124 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6346 9125 | }
|
9126 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6347 9127 | #[allow(missing_docs)] // documentation missing in model
|
9128 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6348 9129 | pub fn default_document_boolean(
|
6349 9130 | mut self,
|
6350 9131 | input: ::aws_smithy_http_server_python::types::Document,
|
6351 9132 | ) -> Self {
|
6352 - | self.default_document_boolean = Some(input);
|
9133 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9134 + | self.default_document_boolean =
|
9135 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
9136 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9137 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
9138 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6353 9139 | self
|
9140 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6354 9141 | }
|
9142 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6355 9143 | #[allow(missing_docs)] // documentation missing in model
|
9144 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6356 9145 | pub fn default_document_list(
|
6357 9146 | mut self,
|
6358 9147 | input: ::aws_smithy_http_server_python::types::Document,
|
6359 9148 | ) -> Self {
|
6360 - | self.default_document_list = Some(input);
|
9149 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9150 + | self.default_document_list =
|
9151 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
9152 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9153 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
9154 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6361 9155 | self
|
9156 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6362 9157 | }
|
9158 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6363 9159 | #[allow(missing_docs)] // documentation missing in model
|
9160 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6364 9161 | pub fn default_null_document(
|
6365 9162 | mut self,
|
6366 9163 | input: ::std::option::Option<::aws_smithy_http_server_python::types::Document>,
|
6367 9164 | ) -> Self {
|
6368 - | self.default_null_document = input;
|
9165 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9166 + | self.default_null_document =
|
9167 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9168 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6369 9169 | self
|
9170 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6370 9171 | }
|
9172 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6371 9173 | #[allow(missing_docs)] // documentation missing in model
|
9174 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6372 9175 | pub fn default_timestamp(
|
6373 9176 | mut self,
|
6374 9177 | input: ::aws_smithy_http_server_python::types::DateTime,
|
6375 9178 | ) -> Self {
|
6376 - | self.default_timestamp = Some(input);
|
9179 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9180 + | self.default_timestamp =
|
9181 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
9182 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9183 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
9184 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6377 9185 | self
|
9186 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6378 9187 | }
|
9188 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6379 9189 | #[allow(missing_docs)] // documentation missing in model
|
9190 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6380 9191 | pub fn default_blob(mut self, input: ::aws_smithy_http_server_python::types::Blob) -> Self {
|
6381 - | self.default_blob = Some(input);
|
9192 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9193 + | self.default_blob =
|
9194 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
9195 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9196 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
9197 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6382 9198 | self
|
9199 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6383 9200 | }
|
9201 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6384 9202 | #[allow(missing_docs)] // documentation missing in model
|
9203 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6385 9204 | pub fn default_byte(mut self, input: i8) -> Self {
|
6386 - | self.default_byte = Some(input);
|
9205 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9206 + | self.default_byte =
|
9207 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
9208 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9209 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
9210 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6387 9211 | self
|
9212 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6388 9213 | }
|
9214 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6389 9215 | #[allow(missing_docs)] // documentation missing in model
|
9216 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6390 9217 | pub fn default_short(mut self, input: i16) -> Self {
|
6391 - | self.default_short = Some(input);
|
9218 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9219 + | self.default_short =
|
9220 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
9221 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9222 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
9223 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6392 9224 | self
|
9225 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6393 9226 | }
|
9227 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6394 9228 | #[allow(missing_docs)] // documentation missing in model
|
9229 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6395 9230 | pub fn default_integer(mut self, input: i32) -> Self {
|
6396 - | self.default_integer = Some(input);
|
9231 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9232 + | self.default_integer =
|
9233 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
9234 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9235 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
9236 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6397 9237 | self
|
9238 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6398 9239 | }
|
9240 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6399 9241 | #[allow(missing_docs)] // documentation missing in model
|
9242 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6400 9243 | pub fn default_long(mut self, input: i64) -> Self {
|
6401 - | self.default_long = Some(input);
|
9244 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9245 + | self.default_long =
|
9246 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
9247 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9248 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
9249 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6402 9250 | self
|
9251 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6403 9252 | }
|
9253 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6404 9254 | #[allow(missing_docs)] // documentation missing in model
|
9255 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6405 9256 | pub fn default_float(mut self, input: f32) -> Self {
|
6406 - | self.default_float = Some(input);
|
9257 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9258 + | self.default_float =
|
9259 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
9260 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9261 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
9262 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6407 9263 | self
|
9264 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6408 9265 | }
|
9266 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6409 9267 | #[allow(missing_docs)] // documentation missing in model
|
9268 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6410 9269 | pub fn default_double(mut self, input: f64) -> Self {
|
6411 - | self.default_double = Some(input);
|
9270 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9271 + | self.default_double =
|
9272 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
9273 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9274 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
9275 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6412 9276 | self
|
9277 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6413 9278 | }
|
9279 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6414 9280 | #[allow(missing_docs)] // documentation missing in model
|
9281 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6415 9282 | pub fn default_map(
|
6416 9283 | mut self,
|
6417 9284 | input: ::std::collections::HashMap<::std::string::String, ::std::string::String>,
|
6418 9285 | ) -> Self {
|
6419 - | self.default_map = Some(input);
|
9286 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9287 + | self.default_map =
|
9288 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
9289 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9290 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
9291 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6420 9292 | self
|
9293 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6421 9294 | }
|
9295 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6422 9296 | #[allow(missing_docs)] // documentation missing in model
|
9297 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6423 9298 | pub fn default_enum(mut self, input: crate::model::TestEnum) -> Self {
|
6424 - | self.default_enum = Some(input);
|
9299 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9300 + | self.default_enum =
|
9301 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
9302 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9303 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
9304 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6425 9305 | self
|
9306 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6426 9307 | }
|
9308 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6427 9309 | #[allow(missing_docs)] // documentation missing in model
|
9310 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6428 9311 | pub fn default_int_enum(mut self, input: i32) -> Self {
|
6429 - | self.default_int_enum = Some(input);
|
9312 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9313 + | self.default_int_enum =
|
9314 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
9315 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9316 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
9317 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6430 9318 | self
|
9319 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6431 9320 | }
|
9321 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6432 9322 | #[allow(missing_docs)] // documentation missing in model
|
9323 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6433 9324 | pub fn empty_string(mut self, input: ::std::string::String) -> Self {
|
6434 - | self.empty_string = Some(input);
|
9325 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9326 + | self.empty_string =
|
9327 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
9328 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9329 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
9330 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6435 9331 | self
|
9332 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6436 9333 | }
|
9334 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6437 9335 | #[allow(missing_docs)] // documentation missing in model
|
9336 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6438 9337 | pub fn false_boolean(mut self, input: bool) -> Self {
|
6439 - | self.false_boolean = Some(input);
|
9338 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9339 + | self.false_boolean =
|
9340 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
9341 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9342 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
9343 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6440 9344 | self
|
9345 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6441 9346 | }
|
9347 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6442 9348 | #[allow(missing_docs)] // documentation missing in model
|
9349 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6443 9350 | pub fn empty_blob(mut self, input: ::aws_smithy_http_server_python::types::Blob) -> Self {
|
6444 - | self.empty_blob = Some(input);
|
9351 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9352 + | self.empty_blob =
|
9353 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
9354 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9355 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
9356 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6445 9357 | self
|
9358 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6446 9359 | }
|
9360 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6447 9361 | #[allow(missing_docs)] // documentation missing in model
|
9362 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6448 9363 | pub fn zero_byte(mut self, input: i8) -> Self {
|
6449 - | self.zero_byte = Some(input);
|
9364 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9365 + | self.zero_byte =
|
9366 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
9367 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9368 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
9369 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6450 9370 | self
|
9371 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6451 9372 | }
|
9373 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6452 9374 | #[allow(missing_docs)] // documentation missing in model
|
9375 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6453 9376 | pub fn zero_short(mut self, input: i16) -> Self {
|
6454 - | self.zero_short = Some(input);
|
9377 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9378 + | self.zero_short =
|
9379 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
9380 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9381 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
9382 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6455 9383 | self
|
9384 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6456 9385 | }
|
9386 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6457 9387 | #[allow(missing_docs)] // documentation missing in model
|
9388 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6458 9389 | pub fn zero_integer(mut self, input: i32) -> Self {
|
6459 - | self.zero_integer = Some(input);
|
9390 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9391 + | self.zero_integer =
|
9392 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
9393 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9394 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
9395 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6460 9396 | self
|
9397 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6461 9398 | }
|
9399 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6462 9400 | #[allow(missing_docs)] // documentation missing in model
|
9401 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6463 9402 | pub fn zero_long(mut self, input: i64) -> Self {
|
6464 - | self.zero_long = Some(input);
|
9403 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9404 + | self.zero_long =
|
9405 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
9406 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9407 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
9408 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6465 9409 | self
|
9410 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6466 9411 | }
|
9412 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6467 9413 | #[allow(missing_docs)] // documentation missing in model
|
9414 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6468 9415 | pub fn zero_float(mut self, input: f32) -> Self {
|
6469 - | self.zero_float = Some(input);
|
9416 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9417 + | self.zero_float =
|
9418 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
9419 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9420 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
9421 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6470 9422 | self
|
9423 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6471 9424 | }
|
9425 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6472 9426 | #[allow(missing_docs)] // documentation missing in model
|
9427 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6473 9428 | pub fn zero_double(mut self, input: f64) -> Self {
|
6474 - | self.zero_double = Some(input);
|
9429 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9430 + | self.zero_double =
|
9431 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
9432 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9433 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
9434 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6475 9435 | self
|
9436 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6476 9437 | }
|
6477 - | /// Consumes the builder and constructs a [`OperationWithDefaultsOutput`](crate::output::OperationWithDefaultsOutput).
|
9438 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`OperationWithDefaultsOutput`](crate::output::OperationWithDefaultsOutput).
|
9439 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
6478 9440 | pub fn build(self) -> crate::output::OperationWithDefaultsOutput {
|
6479 9441 | self.build_enforcing_required_and_enum_traits()
|
6480 9442 | }
|
9443 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
6481 9444 | fn build_enforcing_required_and_enum_traits(
|
6482 9445 | self,
|
6483 9446 | ) -> crate::output::OperationWithDefaultsOutput {
|
9447 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
6484 9448 | crate::output::OperationWithDefaultsOutput {
|
6485 - | default_string: self.default_string.unwrap_or_else(
|
9449 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9450 + | default_string: self
|
9451 + | .default_string
|
9452 + | /* ServerBuilderGeneratorCommon.kt:139 */
|
9453 + | .unwrap_or_else(
|
6486 9454 | #[allow(clippy::redundant_closure)]
|
6487 9455 | || String::from("hi"),
|
6488 9456 | ),
|
6489 - | default_boolean: self.default_boolean.unwrap_or(true),
|
6490 - | default_list: self.default_list.unwrap_or_else(
|
6491 - | #[allow(clippy::redundant_closure)]
|
6492 - | || ::std::vec::Vec::new(),
|
6493 - | ),
|
6494 - | default_document_map: self.default_document_map.unwrap_or_else(
|
9457 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9458 + | default_boolean: self
|
9459 + | .default_boolean
|
9460 + | /* ServerBuilderGeneratorCommon.kt:135 */
|
9461 + | .unwrap_or(true),
|
9462 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9463 + | default_list: self
|
9464 + | .default_list
|
9465 + | /* ServerBuilderGeneratorCommon.kt:100 */
|
9466 + | .unwrap_or_default(),
|
9467 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9468 + | default_document_map: self
|
9469 + | .default_document_map
|
9470 + | /* ServerBuilderGeneratorCommon.kt:139 */
|
9471 + | .unwrap_or_else(
|
6495 9472 | #[allow(clippy::redundant_closure)]
|
6496 9473 | || {
|
6497 9474 | ::aws_smithy_types::Document::Object(::std::collections::HashMap::new())
|
6498 9475 | .into()
|
6499 9476 | },
|
6500 9477 | ),
|
6501 - | default_document_string: self.default_document_string.unwrap_or_else(
|
9478 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9479 + | default_document_string: self
|
9480 + | .default_document_string
|
9481 + | /* ServerBuilderGeneratorCommon.kt:139 */
|
9482 + | .unwrap_or_else(
|
6502 9483 | #[allow(clippy::redundant_closure)]
|
6503 9484 | || {
|
6504 9485 | ::aws_smithy_types::Document::String(::std::string::String::from("hi"))
|
6505 9486 | .into()
|
6506 9487 | },
|
6507 9488 | ),
|
9489 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
6508 9490 | default_document_boolean: self
|
6509 9491 | .default_document_boolean
|
9492 + | /* ServerBuilderGeneratorCommon.kt:135 */
|
6510 9493 | .unwrap_or(::aws_smithy_types::Document::Bool(true).into()),
|
6511 - | default_document_list: self.default_document_list.unwrap_or_else(
|
9494 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9495 + | default_document_list: self
|
9496 + | .default_document_list
|
9497 + | /* ServerBuilderGeneratorCommon.kt:139 */
|
9498 + | .unwrap_or_else(
|
6512 9499 | #[allow(clippy::redundant_closure)]
|
6513 9500 | || ::aws_smithy_types::Document::Array(::std::vec::Vec::new()).into(),
|
6514 9501 | ),
|
9502 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
6515 9503 | default_null_document: self.default_null_document,
|
6516 - | default_timestamp: self.default_timestamp.unwrap_or_else(
|
9504 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9505 + | default_timestamp: self
|
9506 + | .default_timestamp
|
9507 + | /* ServerBuilderGeneratorCommon.kt:139 */
|
9508 + | .unwrap_or_else(
|
6517 9509 | #[allow(clippy::redundant_closure)]
|
6518 9510 | || ::aws_smithy_types::DateTime::from_fractional_secs(0, 0_f64).into(),
|
6519 9511 | ),
|
6520 - | default_blob: self.default_blob.unwrap_or_else(
|
9512 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9513 + | default_blob: self
|
9514 + | .default_blob
|
9515 + | /* ServerBuilderGeneratorCommon.kt:139 */
|
9516 + | .unwrap_or_else(
|
6521 9517 | #[allow(clippy::redundant_closure)]
|
6522 9518 | || ::aws_smithy_types::Blob::new("abc").into(),
|
6523 9519 | ),
|
6524 - | default_byte: self.default_byte.unwrap_or(1i8),
|
6525 - | default_short: self.default_short.unwrap_or(1i16),
|
6526 - | default_integer: self.default_integer.unwrap_or(10i32),
|
6527 - | default_long: self.default_long.unwrap_or(100i64),
|
6528 - | default_float: self.default_float.unwrap_or(1.0f32),
|
6529 - | default_double: self.default_double.unwrap_or(1.0f64),
|
6530 - | default_map: self.default_map.unwrap_or_else(
|
6531 - | #[allow(clippy::redundant_closure)]
|
6532 - | || ::std::collections::HashMap::new(),
|
6533 - | ),
|
6534 - | default_enum: self.default_enum.unwrap_or(
|
9520 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9521 + | default_byte: self
|
9522 + | .default_byte
|
9523 + | /* ServerBuilderGeneratorCommon.kt:135 */
|
9524 + | .unwrap_or(1i8),
|
9525 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9526 + | default_short: self
|
9527 + | .default_short
|
9528 + | /* ServerBuilderGeneratorCommon.kt:135 */
|
9529 + | .unwrap_or(1i16),
|
9530 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9531 + | default_integer: self
|
9532 + | .default_integer
|
9533 + | /* ServerBuilderGeneratorCommon.kt:135 */
|
9534 + | .unwrap_or(10i32),
|
9535 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9536 + | default_long: self
|
9537 + | .default_long
|
9538 + | /* ServerBuilderGeneratorCommon.kt:135 */
|
9539 + | .unwrap_or(100i64),
|
9540 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9541 + | default_float: self
|
9542 + | .default_float
|
9543 + | /* ServerBuilderGeneratorCommon.kt:135 */
|
9544 + | .unwrap_or(1.0f32),
|
9545 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9546 + | default_double: self
|
9547 + | .default_double
|
9548 + | /* ServerBuilderGeneratorCommon.kt:135 */
|
9549 + | .unwrap_or(1.0f64),
|
9550 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9551 + | default_map: self
|
9552 + | .default_map
|
9553 + | /* ServerBuilderGeneratorCommon.kt:100 */
|
9554 + | .unwrap_or_default(),
|
9555 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9556 + | default_enum: self
|
9557 + | .default_enum
|
9558 + | /* ServerBuilderGeneratorCommon.kt:135 */
|
9559 + | .unwrap_or(
|
6535 9560 | "FOO"
|
6536 9561 | .parse::<crate::model::TestEnum>()
|
6537 9562 | .expect("static value validated to member"),
|
6538 9563 | ),
|
6539 - | default_int_enum: self.default_int_enum.unwrap_or(1i32),
|
6540 - | empty_string: self.empty_string.unwrap_or_else(
|
9564 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9565 + | default_int_enum: self
|
9566 + | .default_int_enum
|
9567 + | /* ServerBuilderGeneratorCommon.kt:135 */
|
9568 + | .unwrap_or(1i32),
|
9569 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9570 + | empty_string: self
|
9571 + | .empty_string
|
9572 + | /* ServerBuilderGeneratorCommon.kt:139 */
|
9573 + | .unwrap_or_else(
|
6541 9574 | #[allow(clippy::redundant_closure)]
|
6542 9575 | || String::from(""),
|
6543 9576 | ),
|
6544 - | false_boolean: self.false_boolean.unwrap_or(false),
|
6545 - | empty_blob: self.empty_blob.unwrap_or_else(
|
9577 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9578 + | false_boolean: self
|
9579 + | .false_boolean
|
9580 + | /* ServerBuilderGeneratorCommon.kt:135 */
|
9581 + | .unwrap_or(false),
|
9582 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9583 + | empty_blob: self
|
9584 + | .empty_blob
|
9585 + | /* ServerBuilderGeneratorCommon.kt:139 */
|
9586 + | .unwrap_or_else(
|
6546 9587 | #[allow(clippy::redundant_closure)]
|
6547 9588 | || ::aws_smithy_types::Blob::new("").into(),
|
6548 9589 | ),
|
6549 - | zero_byte: self.zero_byte.unwrap_or(0i8),
|
6550 - | zero_short: self.zero_short.unwrap_or(0i16),
|
6551 - | zero_integer: self.zero_integer.unwrap_or(0i32),
|
6552 - | zero_long: self.zero_long.unwrap_or(0i64),
|
6553 - | zero_float: self.zero_float.unwrap_or(0.0f32),
|
6554 - | zero_double: self.zero_double.unwrap_or(0.0f64),
|
6555 - | }
|
6556 - | }
|
6557 - | }
|
6558 - | }
|
6559 - | /// See [`ContentTypeParametersOutput`](crate::output::ContentTypeParametersOutput).
|
9590 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9591 + | zero_byte: self
|
9592 + | .zero_byte
|
9593 + | /* ServerBuilderGeneratorCommon.kt:135 */
|
9594 + | .unwrap_or(0i8),
|
9595 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9596 + | zero_short: self
|
9597 + | .zero_short
|
9598 + | /* ServerBuilderGeneratorCommon.kt:135 */
|
9599 + | .unwrap_or(0i16),
|
9600 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9601 + | zero_integer: self
|
9602 + | .zero_integer
|
9603 + | /* ServerBuilderGeneratorCommon.kt:135 */
|
9604 + | .unwrap_or(0i32),
|
9605 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9606 + | zero_long: self
|
9607 + | .zero_long
|
9608 + | /* ServerBuilderGeneratorCommon.kt:135 */
|
9609 + | .unwrap_or(0i64),
|
9610 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9611 + | zero_float: self
|
9612 + | .zero_float
|
9613 + | /* ServerBuilderGeneratorCommon.kt:135 */
|
9614 + | .unwrap_or(0.0f32),
|
9615 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9616 + | zero_double: self
|
9617 + | .zero_double
|
9618 + | /* ServerBuilderGeneratorCommon.kt:135 */
|
9619 + | .unwrap_or(0.0f64),
|
9620 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
9621 + | }
|
9622 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9623 + | }
|
9624 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9625 + | }
|
9626 + |
|
9627 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
9628 + | }
|
9629 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`ContentTypeParametersOutput`](crate::output::ContentTypeParametersOutput).
|
6560 9630 | pub mod content_type_parameters_output {
|
6561 9631 |
|
9632 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
6562 9633 | impl ::std::convert::From<Builder> for crate::output::ContentTypeParametersOutput {
|
6563 9634 | fn from(builder: Builder) -> Self {
|
6564 9635 | builder.build()
|
6565 9636 | }
|
6566 9637 | }
|
6567 - | /// A builder for [`ContentTypeParametersOutput`](crate::output::ContentTypeParametersOutput).
|
9638 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`ContentTypeParametersOutput`](crate::output::ContentTypeParametersOutput).
|
9639 + | /* RustType.kt:516 */
|
6568 9640 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
6569 - | pub struct Builder {}
|
9641 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
9642 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
9643 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
6570 9644 | impl Builder {
|
6571 - | /// Consumes the builder and constructs a [`ContentTypeParametersOutput`](crate::output::ContentTypeParametersOutput).
|
9645 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`ContentTypeParametersOutput`](crate::output::ContentTypeParametersOutput).
|
9646 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
6572 9647 | pub fn build(self) -> crate::output::ContentTypeParametersOutput {
|
6573 9648 | self.build_enforcing_required_and_enum_traits()
|
6574 9649 | }
|
9650 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
6575 9651 | fn build_enforcing_required_and_enum_traits(
|
6576 9652 | self,
|
6577 9653 | ) -> crate::output::ContentTypeParametersOutput {
|
6578 - | crate::output::ContentTypeParametersOutput {}
|
9654 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
9655 + | crate::output::ContentTypeParametersOutput {
|
9656 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
9657 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
6579 9658 | }
|
9659 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
6580 9660 | }
|
9661 + |
|
9662 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
6581 9663 | }
|
6582 - | /// See [`PutWithContentEncodingOutput`](crate::output::PutWithContentEncodingOutput).
|
9664 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`PutWithContentEncodingOutput`](crate::output::PutWithContentEncodingOutput).
|
6583 9665 | pub mod put_with_content_encoding_output {
|
6584 9666 |
|
9667 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
6585 9668 | impl ::std::convert::From<Builder> for crate::output::PutWithContentEncodingOutput {
|
6586 9669 | fn from(builder: Builder) -> Self {
|
6587 9670 | builder.build()
|
6588 9671 | }
|
6589 9672 | }
|
6590 - | /// A builder for [`PutWithContentEncodingOutput`](crate::output::PutWithContentEncodingOutput).
|
9673 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`PutWithContentEncodingOutput`](crate::output::PutWithContentEncodingOutput).
|
9674 + | /* RustType.kt:516 */
|
6591 9675 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
6592 - | pub struct Builder {}
|
9676 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
9677 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
9678 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
6593 9679 | impl Builder {
|
6594 - | /// Consumes the builder and constructs a [`PutWithContentEncodingOutput`](crate::output::PutWithContentEncodingOutput).
|
9680 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`PutWithContentEncodingOutput`](crate::output::PutWithContentEncodingOutput).
|
9681 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
6595 9682 | pub fn build(self) -> crate::output::PutWithContentEncodingOutput {
|
6596 9683 | self.build_enforcing_required_and_enum_traits()
|
6597 9684 | }
|
9685 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
6598 9686 | fn build_enforcing_required_and_enum_traits(
|
6599 9687 | self,
|
6600 9688 | ) -> crate::output::PutWithContentEncodingOutput {
|
6601 - | crate::output::PutWithContentEncodingOutput {}
|
9689 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
9690 + | crate::output::PutWithContentEncodingOutput {
|
9691 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
9692 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
6602 9693 | }
|
9694 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
6603 9695 | }
|
9696 + |
|
9697 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
6604 9698 | }
|
6605 - | /// See [`FractionalSecondsOutput`](crate::output::FractionalSecondsOutput).
|
9699 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`FractionalSecondsOutput`](crate::output::FractionalSecondsOutput).
|
6606 9700 | pub mod fractional_seconds_output {
|
6607 9701 |
|
9702 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
6608 9703 | impl ::std::convert::From<Builder> for crate::output::FractionalSecondsOutput {
|
6609 9704 | fn from(builder: Builder) -> Self {
|
6610 9705 | builder.build()
|
6611 9706 | }
|
6612 9707 | }
|
6613 - | /// A builder for [`FractionalSecondsOutput`](crate::output::FractionalSecondsOutput).
|
9708 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`FractionalSecondsOutput`](crate::output::FractionalSecondsOutput).
|
9709 + | /* RustType.kt:516 */
|
6614 9710 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
9711 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
6615 9712 | pub struct Builder {
|
9713 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6616 9714 | pub(crate) datetime:
|
6617 9715 | ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
9716 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
6618 9717 | }
|
9718 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
6619 9719 | impl Builder {
|
9720 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6620 9721 | #[allow(missing_docs)] // documentation missing in model
|
9722 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6621 9723 | pub fn datetime(
|
6622 9724 | mut self,
|
6623 9725 | input: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
6624 9726 | ) -> Self {
|
6625 - | self.datetime = input;
|
9727 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9728 + | self.datetime =
|
9729 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9730 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6626 9731 | self
|
9732 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6627 9733 | }
|
6628 - | /// Consumes the builder and constructs a [`FractionalSecondsOutput`](crate::output::FractionalSecondsOutput).
|
9734 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`FractionalSecondsOutput`](crate::output::FractionalSecondsOutput).
|
9735 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
6629 9736 | pub fn build(self) -> crate::output::FractionalSecondsOutput {
|
6630 9737 | self.build_enforcing_required_and_enum_traits()
|
6631 9738 | }
|
9739 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
6632 9740 | fn build_enforcing_required_and_enum_traits(
|
6633 9741 | self,
|
6634 9742 | ) -> crate::output::FractionalSecondsOutput {
|
9743 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
6635 9744 | crate::output::FractionalSecondsOutput {
|
9745 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
6636 9746 | datetime: self.datetime,
|
9747 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
6637 9748 | }
|
9749 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
6638 9750 | }
|
9751 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
6639 9752 | }
|
9753 + |
|
9754 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
6640 9755 | }
|
6641 - | /// See [`DatetimeOffsetsOutput`](crate::output::DatetimeOffsetsOutput).
|
9756 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`DatetimeOffsetsOutput`](crate::output::DatetimeOffsetsOutput).
|
6642 9757 | pub mod datetime_offsets_output {
|
6643 9758 |
|
9759 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
6644 9760 | impl ::std::convert::From<Builder> for crate::output::DatetimeOffsetsOutput {
|
6645 9761 | fn from(builder: Builder) -> Self {
|
6646 9762 | builder.build()
|
6647 9763 | }
|
6648 9764 | }
|
6649 - | /// A builder for [`DatetimeOffsetsOutput`](crate::output::DatetimeOffsetsOutput).
|
9765 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`DatetimeOffsetsOutput`](crate::output::DatetimeOffsetsOutput).
|
9766 + | /* RustType.kt:516 */
|
6650 9767 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
9768 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
6651 9769 | pub struct Builder {
|
9770 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6652 9771 | pub(crate) datetime:
|
6653 9772 | ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
9773 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
6654 9774 | }
|
9775 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
6655 9776 | impl Builder {
|
9777 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6656 9778 | #[allow(missing_docs)] // documentation missing in model
|
9779 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6657 9780 | pub fn datetime(
|
6658 9781 | mut self,
|
6659 9782 | input: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
6660 9783 | ) -> Self {
|
6661 - | self.datetime = input;
|
9784 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9785 + | self.datetime =
|
9786 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9787 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6662 9788 | self
|
9789 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6663 9790 | }
|
6664 - | /// Consumes the builder and constructs a [`DatetimeOffsetsOutput`](crate::output::DatetimeOffsetsOutput).
|
9791 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`DatetimeOffsetsOutput`](crate::output::DatetimeOffsetsOutput).
|
9792 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
6665 9793 | pub fn build(self) -> crate::output::DatetimeOffsetsOutput {
|
6666 9794 | self.build_enforcing_required_and_enum_traits()
|
6667 9795 | }
|
9796 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
6668 9797 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::DatetimeOffsetsOutput {
|
9798 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
6669 9799 | crate::output::DatetimeOffsetsOutput {
|
9800 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
6670 9801 | datetime: self.datetime,
|
9802 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
6671 9803 | }
|
9804 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
6672 9805 | }
|
9806 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
6673 9807 | }
|
9808 + |
|
9809 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
6674 9810 | }
|
6675 - | /// See [`TestPostNoInputNoPayloadOutput`](crate::output::TestPostNoInputNoPayloadOutput).
|
9811 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`TestPostNoInputNoPayloadOutput`](crate::output::TestPostNoInputNoPayloadOutput).
|
6676 9812 | pub mod test_post_no_input_no_payload_output {
|
6677 9813 |
|
9814 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
6678 9815 | impl ::std::convert::From<Builder> for crate::output::TestPostNoInputNoPayloadOutput {
|
6679 9816 | fn from(builder: Builder) -> Self {
|
6680 9817 | builder.build()
|
6681 9818 | }
|
6682 9819 | }
|
6683 - | /// A builder for [`TestPostNoInputNoPayloadOutput`](crate::output::TestPostNoInputNoPayloadOutput).
|
9820 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`TestPostNoInputNoPayloadOutput`](crate::output::TestPostNoInputNoPayloadOutput).
|
9821 + | /* RustType.kt:516 */
|
6684 9822 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
9823 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
6685 9824 | pub struct Builder {
|
9825 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6686 9826 | pub(crate) test_id: ::std::option::Option<::std::string::String>,
|
9827 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
6687 9828 | }
|
9829 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
6688 9830 | impl Builder {
|
9831 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6689 9832 | #[allow(missing_docs)] // documentation missing in model
|
9833 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6690 9834 | pub fn test_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
|
6691 - | self.test_id = input;
|
9835 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9836 + | self.test_id =
|
9837 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9838 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6692 9839 | self
|
9840 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6693 9841 | }
|
6694 - | /// Consumes the builder and constructs a [`TestPostNoInputNoPayloadOutput`](crate::output::TestPostNoInputNoPayloadOutput).
|
9842 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`TestPostNoInputNoPayloadOutput`](crate::output::TestPostNoInputNoPayloadOutput).
|
9843 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
6695 9844 | pub fn build(self) -> crate::output::TestPostNoInputNoPayloadOutput {
|
6696 9845 | self.build_enforcing_required_and_enum_traits()
|
6697 9846 | }
|
9847 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
6698 9848 | fn build_enforcing_required_and_enum_traits(
|
6699 9849 | self,
|
6700 9850 | ) -> crate::output::TestPostNoInputNoPayloadOutput {
|
9851 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
6701 9852 | crate::output::TestPostNoInputNoPayloadOutput {
|
9853 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
6702 9854 | test_id: self.test_id,
|
9855 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
6703 9856 | }
|
9857 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
6704 9858 | }
|
9859 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
6705 9860 | }
|
9861 + |
|
9862 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
6706 9863 | }
|
6707 - | /// See [`TestGetNoInputNoPayloadOutput`](crate::output::TestGetNoInputNoPayloadOutput).
|
9864 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`TestGetNoInputNoPayloadOutput`](crate::output::TestGetNoInputNoPayloadOutput).
|
6708 9865 | pub mod test_get_no_input_no_payload_output {
|
6709 9866 |
|
9867 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
6710 9868 | impl ::std::convert::From<Builder> for crate::output::TestGetNoInputNoPayloadOutput {
|
6711 9869 | fn from(builder: Builder) -> Self {
|
6712 9870 | builder.build()
|
6713 9871 | }
|
6714 9872 | }
|
6715 - | /// A builder for [`TestGetNoInputNoPayloadOutput`](crate::output::TestGetNoInputNoPayloadOutput).
|
9873 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`TestGetNoInputNoPayloadOutput`](crate::output::TestGetNoInputNoPayloadOutput).
|
9874 + | /* RustType.kt:516 */
|
6716 9875 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
9876 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
6717 9877 | pub struct Builder {
|
9878 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6718 9879 | pub(crate) test_id: ::std::option::Option<::std::string::String>,
|
9880 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
6719 9881 | }
|
9882 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
6720 9883 | impl Builder {
|
9884 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6721 9885 | #[allow(missing_docs)] // documentation missing in model
|
9886 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6722 9887 | pub fn test_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
|
6723 - | self.test_id = input;
|
9888 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9889 + | self.test_id =
|
9890 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9891 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6724 9892 | self
|
9893 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6725 9894 | }
|
6726 - | /// Consumes the builder and constructs a [`TestGetNoInputNoPayloadOutput`](crate::output::TestGetNoInputNoPayloadOutput).
|
9895 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`TestGetNoInputNoPayloadOutput`](crate::output::TestGetNoInputNoPayloadOutput).
|
9896 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
6727 9897 | pub fn build(self) -> crate::output::TestGetNoInputNoPayloadOutput {
|
6728 9898 | self.build_enforcing_required_and_enum_traits()
|
6729 9899 | }
|
9900 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
6730 9901 | fn build_enforcing_required_and_enum_traits(
|
6731 9902 | self,
|
6732 9903 | ) -> crate::output::TestGetNoInputNoPayloadOutput {
|
9904 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
6733 9905 | crate::output::TestGetNoInputNoPayloadOutput {
|
9906 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
6734 9907 | test_id: self.test_id,
|
9908 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
6735 9909 | }
|
9910 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
6736 9911 | }
|
9912 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
6737 9913 | }
|
9914 + |
|
9915 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
6738 9916 | }
|
6739 - | /// See [`TestPostNoPayloadOutput`](crate::output::TestPostNoPayloadOutput).
|
9917 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`TestPostNoPayloadOutput`](crate::output::TestPostNoPayloadOutput).
|
6740 9918 | pub mod test_post_no_payload_output {
|
6741 9919 |
|
9920 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
6742 9921 | impl ::std::convert::From<Builder> for crate::output::TestPostNoPayloadOutput {
|
6743 9922 | fn from(builder: Builder) -> Self {
|
6744 9923 | builder.build()
|
6745 9924 | }
|
6746 9925 | }
|
6747 - | /// A builder for [`TestPostNoPayloadOutput`](crate::output::TestPostNoPayloadOutput).
|
9926 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`TestPostNoPayloadOutput`](crate::output::TestPostNoPayloadOutput).
|
9927 + | /* RustType.kt:516 */
|
6748 9928 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
9929 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
6749 9930 | pub struct Builder {
|
9931 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6750 9932 | pub(crate) test_id: ::std::option::Option<::std::string::String>,
|
9933 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
6751 9934 | }
|
9935 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
6752 9936 | impl Builder {
|
9937 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6753 9938 | #[allow(missing_docs)] // documentation missing in model
|
9939 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6754 9940 | pub fn test_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
|
6755 - | self.test_id = input;
|
9941 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9942 + | self.test_id =
|
9943 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9944 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6756 9945 | self
|
9946 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6757 9947 | }
|
6758 - | /// Consumes the builder and constructs a [`TestPostNoPayloadOutput`](crate::output::TestPostNoPayloadOutput).
|
9948 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`TestPostNoPayloadOutput`](crate::output::TestPostNoPayloadOutput).
|
9949 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
6759 9950 | pub fn build(self) -> crate::output::TestPostNoPayloadOutput {
|
6760 9951 | self.build_enforcing_required_and_enum_traits()
|
6761 9952 | }
|
9953 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
6762 9954 | fn build_enforcing_required_and_enum_traits(
|
6763 9955 | self,
|
6764 9956 | ) -> crate::output::TestPostNoPayloadOutput {
|
9957 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
6765 9958 | crate::output::TestPostNoPayloadOutput {
|
9959 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
6766 9960 | test_id: self.test_id,
|
9961 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
6767 9962 | }
|
9963 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
6768 9964 | }
|
9965 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
6769 9966 | }
|
9967 + |
|
9968 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
6770 9969 | }
|
6771 - | /// See [`TestGetNoPayloadOutput`](crate::output::TestGetNoPayloadOutput).
|
9970 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`TestGetNoPayloadOutput`](crate::output::TestGetNoPayloadOutput).
|
6772 9971 | pub mod test_get_no_payload_output {
|
6773 9972 |
|
9973 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
6774 9974 | impl ::std::convert::From<Builder> for crate::output::TestGetNoPayloadOutput {
|
6775 9975 | fn from(builder: Builder) -> Self {
|
6776 9976 | builder.build()
|
6777 9977 | }
|
6778 9978 | }
|
6779 - | /// A builder for [`TestGetNoPayloadOutput`](crate::output::TestGetNoPayloadOutput).
|
9979 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`TestGetNoPayloadOutput`](crate::output::TestGetNoPayloadOutput).
|
9980 + | /* RustType.kt:516 */
|
6780 9981 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
9982 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
6781 9983 | pub struct Builder {
|
9984 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6782 9985 | pub(crate) test_id: ::std::option::Option<::std::string::String>,
|
9986 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
6783 9987 | }
|
9988 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
6784 9989 | impl Builder {
|
9990 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6785 9991 | #[allow(missing_docs)] // documentation missing in model
|
9992 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6786 9993 | pub fn test_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
|
6787 - | self.test_id = input;
|
9994 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
9995 + | self.test_id =
|
9996 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
9997 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6788 9998 | self
|
9999 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6789 10000 | }
|
6790 - | /// Consumes the builder and constructs a [`TestGetNoPayloadOutput`](crate::output::TestGetNoPayloadOutput).
|
10001 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`TestGetNoPayloadOutput`](crate::output::TestGetNoPayloadOutput).
|
10002 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
6791 10003 | pub fn build(self) -> crate::output::TestGetNoPayloadOutput {
|
6792 10004 | self.build_enforcing_required_and_enum_traits()
|
6793 10005 | }
|
10006 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
6794 10007 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::TestGetNoPayloadOutput {
|
10008 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
6795 10009 | crate::output::TestGetNoPayloadOutput {
|
10010 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
6796 10011 | test_id: self.test_id,
|
10012 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
6797 10013 | }
|
10014 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
6798 10015 | }
|
10016 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
6799 10017 | }
|
10018 + |
|
10019 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
6800 10020 | }
|
6801 - | /// See [`TestPayloadBlobOutput`](crate::output::TestPayloadBlobOutput).
|
10021 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`TestPayloadBlobOutput`](crate::output::TestPayloadBlobOutput).
|
6802 10022 | pub mod test_payload_blob_output {
|
6803 10023 |
|
10024 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
6804 10025 | impl ::std::convert::From<Builder> for crate::output::TestPayloadBlobOutput {
|
6805 10026 | fn from(builder: Builder) -> Self {
|
6806 10027 | builder.build()
|
6807 10028 | }
|
6808 10029 | }
|
6809 - | /// A builder for [`TestPayloadBlobOutput`](crate::output::TestPayloadBlobOutput).
|
10030 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`TestPayloadBlobOutput`](crate::output::TestPayloadBlobOutput).
|
10031 + | /* RustType.kt:516 */
|
6810 10032 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
10033 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
6811 10034 | pub struct Builder {
|
10035 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6812 10036 | pub(crate) content_type: ::std::option::Option<::std::string::String>,
|
10037 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6813 10038 | pub(crate) data: ::std::option::Option<::aws_smithy_http_server_python::types::Blob>,
|
10039 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
6814 10040 | }
|
10041 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
6815 10042 | impl Builder {
|
10043 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6816 10044 | #[allow(missing_docs)] // documentation missing in model
|
10045 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6817 10046 | pub fn content_type(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
|
6818 - | self.content_type = input;
|
10047 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
10048 + | self.content_type =
|
10049 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
10050 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6819 10051 | self
|
10052 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6820 10053 | }
|
10054 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6821 10055 | #[allow(missing_docs)] // documentation missing in model
|
10056 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6822 10057 | pub fn data(
|
6823 10058 | mut self,
|
6824 10059 | input: ::std::option::Option<::aws_smithy_http_server_python::types::Blob>,
|
6825 10060 | ) -> Self {
|
6826 - | self.data = input;
|
10061 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
10062 + | self.data =
|
10063 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
10064 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6827 10065 | self
|
10066 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6828 10067 | }
|
6829 - | /// Consumes the builder and constructs a [`TestPayloadBlobOutput`](crate::output::TestPayloadBlobOutput).
|
10068 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`TestPayloadBlobOutput`](crate::output::TestPayloadBlobOutput).
|
10069 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
6830 10070 | pub fn build(self) -> crate::output::TestPayloadBlobOutput {
|
6831 10071 | self.build_enforcing_required_and_enum_traits()
|
6832 10072 | }
|
10073 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
6833 10074 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::TestPayloadBlobOutput {
|
10075 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
6834 10076 | crate::output::TestPayloadBlobOutput {
|
10077 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
6835 10078 | content_type: self.content_type,
|
10079 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
6836 10080 | data: self.data,
|
10081 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
6837 10082 | }
|
10083 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
6838 10084 | }
|
10085 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
6839 10086 | }
|
10087 + |
|
10088 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
6840 10089 | }
|
6841 - | /// See [`TestPayloadStructureOutput`](crate::output::TestPayloadStructureOutput).
|
10090 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`TestPayloadStructureOutput`](crate::output::TestPayloadStructureOutput).
|
6842 10091 | pub mod test_payload_structure_output {
|
6843 10092 |
|
10093 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
6844 10094 | impl ::std::convert::From<Builder> for crate::output::TestPayloadStructureOutput {
|
6845 10095 | fn from(builder: Builder) -> Self {
|
6846 10096 | builder.build()
|
6847 10097 | }
|
6848 10098 | }
|
6849 - | /// A builder for [`TestPayloadStructureOutput`](crate::output::TestPayloadStructureOutput).
|
10099 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`TestPayloadStructureOutput`](crate::output::TestPayloadStructureOutput).
|
10100 + | /* RustType.kt:516 */
|
6850 10101 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
10102 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
6851 10103 | pub struct Builder {
|
10104 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6852 10105 | pub(crate) test_id: ::std::option::Option<::std::string::String>,
|
10106 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6853 10107 | pub(crate) payload_config: ::std::option::Option<crate::model::PayloadConfig>,
|
10108 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
6854 10109 | }
|
10110 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
6855 10111 | impl Builder {
|
10112 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6856 10113 | #[allow(missing_docs)] // documentation missing in model
|
10114 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6857 10115 | pub fn test_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
|
6858 - | self.test_id = input;
|
10116 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
10117 + | self.test_id =
|
10118 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
10119 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6859 10120 | self
|
10121 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6860 10122 | }
|
10123 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6861 10124 | #[allow(missing_docs)] // documentation missing in model
|
10125 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6862 10126 | pub fn payload_config(
|
6863 10127 | mut self,
|
6864 10128 | input: ::std::option::Option<crate::model::PayloadConfig>,
|
6865 10129 | ) -> Self {
|
6866 - | self.payload_config = input;
|
10130 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
10131 + | self.payload_config =
|
10132 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
10133 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6867 10134 | self
|
10135 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6868 10136 | }
|
6869 - | /// Consumes the builder and constructs a [`TestPayloadStructureOutput`](crate::output::TestPayloadStructureOutput).
|
10137 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`TestPayloadStructureOutput`](crate::output::TestPayloadStructureOutput).
|
10138 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
6870 10139 | pub fn build(self) -> crate::output::TestPayloadStructureOutput {
|
6871 10140 | self.build_enforcing_required_and_enum_traits()
|
6872 10141 | }
|
10142 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
6873 10143 | fn build_enforcing_required_and_enum_traits(
|
6874 10144 | self,
|
6875 10145 | ) -> crate::output::TestPayloadStructureOutput {
|
10146 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
6876 10147 | crate::output::TestPayloadStructureOutput {
|
10148 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
6877 10149 | test_id: self.test_id,
|
10150 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
6878 10151 | payload_config: self.payload_config,
|
10152 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
6879 10153 | }
|
10154 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
6880 10155 | }
|
10156 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
6881 10157 | }
|
10158 + |
|
10159 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
6882 10160 | }
|
6883 - | /// See [`TestBodyStructureOutput`](crate::output::TestBodyStructureOutput).
|
10161 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`TestBodyStructureOutput`](crate::output::TestBodyStructureOutput).
|
6884 10162 | pub mod test_body_structure_output {
|
6885 10163 |
|
10164 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
6886 10165 | impl ::std::convert::From<Builder> for crate::output::TestBodyStructureOutput {
|
6887 10166 | fn from(builder: Builder) -> Self {
|
6888 10167 | builder.build()
|
6889 10168 | }
|
6890 10169 | }
|
6891 - | /// A builder for [`TestBodyStructureOutput`](crate::output::TestBodyStructureOutput).
|
10170 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`TestBodyStructureOutput`](crate::output::TestBodyStructureOutput).
|
10171 + | /* RustType.kt:516 */
|
6892 10172 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
10173 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
6893 10174 | pub struct Builder {
|
10175 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6894 10176 | pub(crate) test_id: ::std::option::Option<::std::string::String>,
|
10177 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6895 10178 | pub(crate) test_config: ::std::option::Option<crate::model::TestConfig>,
|
10179 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
6896 10180 | }
|
10181 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
6897 10182 | impl Builder {
|
10183 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6898 10184 | #[allow(missing_docs)] // documentation missing in model
|
10185 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6899 10186 | pub fn test_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
|
6900 - | self.test_id = input;
|
10187 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
10188 + | self.test_id =
|
10189 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
10190 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6901 10191 | self
|
10192 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6902 10193 | }
|
10194 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6903 10195 | #[allow(missing_docs)] // documentation missing in model
|
10196 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6904 10197 | pub fn test_config(
|
6905 10198 | mut self,
|
6906 10199 | input: ::std::option::Option<crate::model::TestConfig>,
|
6907 10200 | ) -> Self {
|
6908 - | self.test_config = input;
|
10201 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
10202 + | self.test_config =
|
10203 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
10204 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6909 10205 | self
|
10206 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6910 10207 | }
|
6911 - | /// Consumes the builder and constructs a [`TestBodyStructureOutput`](crate::output::TestBodyStructureOutput).
|
10208 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`TestBodyStructureOutput`](crate::output::TestBodyStructureOutput).
|
10209 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
6912 10210 | pub fn build(self) -> crate::output::TestBodyStructureOutput {
|
6913 10211 | self.build_enforcing_required_and_enum_traits()
|
6914 10212 | }
|
10213 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
6915 10214 | fn build_enforcing_required_and_enum_traits(
|
6916 10215 | self,
|
6917 10216 | ) -> crate::output::TestBodyStructureOutput {
|
10217 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
6918 10218 | crate::output::TestBodyStructureOutput {
|
10219 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
6919 10220 | test_id: self.test_id,
|
10221 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
6920 10222 | test_config: self.test_config,
|
10223 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
6921 10224 | }
|
10225 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
6922 10226 | }
|
10227 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
6923 10228 | }
|
10229 + |
|
10230 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
6924 10231 | }
|
6925 - | /// See [`MalformedAcceptWithGenericStringOutput`](crate::output::MalformedAcceptWithGenericStringOutput).
|
10232 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedAcceptWithGenericStringOutput`](crate::output::MalformedAcceptWithGenericStringOutput).
|
6926 10233 | pub mod malformed_accept_with_generic_string_output {
|
6927 10234 |
|
10235 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
6928 10236 | impl ::std::convert::From<Builder> for crate::output::MalformedAcceptWithGenericStringOutput {
|
6929 10237 | fn from(builder: Builder) -> Self {
|
6930 10238 | builder.build()
|
6931 10239 | }
|
6932 10240 | }
|
6933 - | /// A builder for [`MalformedAcceptWithGenericStringOutput`](crate::output::MalformedAcceptWithGenericStringOutput).
|
10241 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedAcceptWithGenericStringOutput`](crate::output::MalformedAcceptWithGenericStringOutput).
|
10242 + | /* RustType.kt:516 */
|
6934 10243 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
10244 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
6935 10245 | pub struct Builder {
|
10246 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6936 10247 | pub(crate) payload: ::std::option::Option<::std::string::String>,
|
10248 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
6937 10249 | }
|
10250 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
6938 10251 | impl Builder {
|
10252 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6939 10253 | #[allow(missing_docs)] // documentation missing in model
|
10254 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6940 10255 | pub fn payload(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
|
6941 - | self.payload = input;
|
10256 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
10257 + | self.payload =
|
10258 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
10259 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6942 10260 | self
|
10261 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6943 10262 | }
|
6944 - | /// Consumes the builder and constructs a [`MalformedAcceptWithGenericStringOutput`](crate::output::MalformedAcceptWithGenericStringOutput).
|
10263 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedAcceptWithGenericStringOutput`](crate::output::MalformedAcceptWithGenericStringOutput).
|
10264 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
6945 10265 | pub fn build(self) -> crate::output::MalformedAcceptWithGenericStringOutput {
|
6946 10266 | self.build_enforcing_required_and_enum_traits()
|
6947 10267 | }
|
10268 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
6948 10269 | fn build_enforcing_required_and_enum_traits(
|
6949 10270 | self,
|
6950 10271 | ) -> crate::output::MalformedAcceptWithGenericStringOutput {
|
10272 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
6951 10273 | crate::output::MalformedAcceptWithGenericStringOutput {
|
10274 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
6952 10275 | payload: self.payload,
|
10276 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
6953 10277 | }
|
10278 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
6954 10279 | }
|
10280 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
6955 10281 | }
|
10282 + |
|
10283 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
6956 10284 | }
|
6957 - | /// See [`MalformedAcceptWithPayloadOutput`](crate::output::MalformedAcceptWithPayloadOutput).
|
10285 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedAcceptWithPayloadOutput`](crate::output::MalformedAcceptWithPayloadOutput).
|
6958 10286 | pub mod malformed_accept_with_payload_output {
|
6959 10287 |
|
10288 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
6960 10289 | impl ::std::convert::From<Builder> for crate::output::MalformedAcceptWithPayloadOutput {
|
6961 10290 | fn from(builder: Builder) -> Self {
|
6962 10291 | builder.build()
|
6963 10292 | }
|
6964 10293 | }
|
6965 - | /// A builder for [`MalformedAcceptWithPayloadOutput`](crate::output::MalformedAcceptWithPayloadOutput).
|
10294 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedAcceptWithPayloadOutput`](crate::output::MalformedAcceptWithPayloadOutput).
|
10295 + | /* RustType.kt:516 */
|
6966 10296 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
10297 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
6967 10298 | pub struct Builder {
|
10299 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
6968 10300 | pub(crate) payload: ::std::option::Option<::aws_smithy_http_server_python::types::Blob>,
|
10301 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
6969 10302 | }
|
10303 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
6970 10304 | impl Builder {
|
10305 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
6971 10306 | #[allow(missing_docs)] // documentation missing in model
|
10307 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6972 10308 | pub fn payload(
|
6973 10309 | mut self,
|
6974 10310 | input: ::std::option::Option<::aws_smithy_http_server_python::types::Blob>,
|
6975 10311 | ) -> Self {
|
6976 - | self.payload = input;
|
10312 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
10313 + | self.payload =
|
10314 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
10315 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
6977 10316 | self
|
10317 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
6978 10318 | }
|
6979 - | /// Consumes the builder and constructs a [`MalformedAcceptWithPayloadOutput`](crate::output::MalformedAcceptWithPayloadOutput).
|
10319 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedAcceptWithPayloadOutput`](crate::output::MalformedAcceptWithPayloadOutput).
|
10320 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
6980 10321 | pub fn build(self) -> crate::output::MalformedAcceptWithPayloadOutput {
|
6981 10322 | self.build_enforcing_required_and_enum_traits()
|
6982 10323 | }
|
10324 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
6983 10325 | fn build_enforcing_required_and_enum_traits(
|
6984 10326 | self,
|
6985 10327 | ) -> crate::output::MalformedAcceptWithPayloadOutput {
|
10328 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
6986 10329 | crate::output::MalformedAcceptWithPayloadOutput {
|
10330 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
6987 10331 | payload: self.payload,
|
10332 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
6988 10333 | }
|
10334 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
6989 10335 | }
|
10336 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
6990 10337 | }
|
10338 + |
|
10339 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
6991 10340 | }
|
6992 - | /// See [`MalformedAcceptWithBodyOutput`](crate::output::MalformedAcceptWithBodyOutput).
|
10341 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedAcceptWithBodyOutput`](crate::output::MalformedAcceptWithBodyOutput).
|
6993 10342 | pub mod malformed_accept_with_body_output {
|
6994 10343 |
|
10344 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
6995 10345 | impl ::std::convert::From<Builder> for crate::output::MalformedAcceptWithBodyOutput {
|
6996 10346 | fn from(builder: Builder) -> Self {
|
6997 10347 | builder.build()
|
6998 10348 | }
|
6999 10349 | }
|
7000 - | /// A builder for [`MalformedAcceptWithBodyOutput`](crate::output::MalformedAcceptWithBodyOutput).
|
10350 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedAcceptWithBodyOutput`](crate::output::MalformedAcceptWithBodyOutput).
|
10351 + | /* RustType.kt:516 */
|
7001 10352 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
10353 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
7002 10354 | pub struct Builder {
|
10355 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
7003 10356 | pub(crate) hi: ::std::option::Option<::std::string::String>,
|
10357 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
7004 10358 | }
|
10359 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7005 10360 | impl Builder {
|
10361 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
7006 10362 | #[allow(missing_docs)] // documentation missing in model
|
10363 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
7007 10364 | pub fn hi(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
|
7008 - | self.hi = input;
|
10365 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
10366 + | self.hi =
|
10367 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
10368 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
7009 10369 | self
|
10370 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
7010 10371 | }
|
7011 - | /// Consumes the builder and constructs a [`MalformedAcceptWithBodyOutput`](crate::output::MalformedAcceptWithBodyOutput).
|
10372 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedAcceptWithBodyOutput`](crate::output::MalformedAcceptWithBodyOutput).
|
10373 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7012 10374 | pub fn build(self) -> crate::output::MalformedAcceptWithBodyOutput {
|
7013 10375 | self.build_enforcing_required_and_enum_traits()
|
7014 10376 | }
|
10377 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7015 10378 | fn build_enforcing_required_and_enum_traits(
|
7016 10379 | self,
|
7017 10380 | ) -> crate::output::MalformedAcceptWithBodyOutput {
|
7018 - | crate::output::MalformedAcceptWithBodyOutput { hi: self.hi }
|
10381 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
10382 + | crate::output::MalformedAcceptWithBodyOutput {
|
10383 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
10384 + | hi: self.hi,
|
10385 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
10386 + | }
|
10387 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7019 10388 | }
|
10389 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7020 10390 | }
|
10391 + |
|
10392 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7021 10393 | }
|
7022 - | /// See [`MalformedContentTypeWithGenericStringOutput`](crate::output::MalformedContentTypeWithGenericStringOutput).
|
10394 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedContentTypeWithGenericStringOutput`](crate::output::MalformedContentTypeWithGenericStringOutput).
|
7023 10395 | pub mod malformed_content_type_with_generic_string_output {
|
7024 10396 |
|
10397 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7025 10398 | impl ::std::convert::From<Builder> for crate::output::MalformedContentTypeWithGenericStringOutput {
|
7026 10399 | fn from(builder: Builder) -> Self {
|
7027 10400 | builder.build()
|
7028 10401 | }
|
7029 10402 | }
|
7030 - | /// A builder for [`MalformedContentTypeWithGenericStringOutput`](crate::output::MalformedContentTypeWithGenericStringOutput).
|
10403 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedContentTypeWithGenericStringOutput`](crate::output::MalformedContentTypeWithGenericStringOutput).
|
10404 + | /* RustType.kt:516 */
|
7031 10405 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7032 - | pub struct Builder {}
|
10406 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
10407 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
10408 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7033 10409 | impl Builder {
|
7034 - | /// Consumes the builder and constructs a [`MalformedContentTypeWithGenericStringOutput`](crate::output::MalformedContentTypeWithGenericStringOutput).
|
10410 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedContentTypeWithGenericStringOutput`](crate::output::MalformedContentTypeWithGenericStringOutput).
|
10411 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7035 10412 | pub fn build(self) -> crate::output::MalformedContentTypeWithGenericStringOutput {
|
7036 10413 | self.build_enforcing_required_and_enum_traits()
|
7037 10414 | }
|
10415 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7038 10416 | fn build_enforcing_required_and_enum_traits(
|
7039 10417 | self,
|
7040 10418 | ) -> crate::output::MalformedContentTypeWithGenericStringOutput {
|
7041 - | crate::output::MalformedContentTypeWithGenericStringOutput {}
|
10419 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
10420 + | crate::output::MalformedContentTypeWithGenericStringOutput {
|
10421 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
10422 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7042 10423 | }
|
10424 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7043 10425 | }
|
10426 + |
|
10427 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7044 10428 | }
|
7045 - | /// See [`MalformedContentTypeWithPayloadOutput`](crate::output::MalformedContentTypeWithPayloadOutput).
|
10429 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedContentTypeWithPayloadOutput`](crate::output::MalformedContentTypeWithPayloadOutput).
|
7046 10430 | pub mod malformed_content_type_with_payload_output {
|
7047 10431 |
|
10432 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7048 10433 | impl ::std::convert::From<Builder> for crate::output::MalformedContentTypeWithPayloadOutput {
|
7049 10434 | fn from(builder: Builder) -> Self {
|
7050 10435 | builder.build()
|
7051 10436 | }
|
7052 10437 | }
|
7053 - | /// A builder for [`MalformedContentTypeWithPayloadOutput`](crate::output::MalformedContentTypeWithPayloadOutput).
|
10438 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedContentTypeWithPayloadOutput`](crate::output::MalformedContentTypeWithPayloadOutput).
|
10439 + | /* RustType.kt:516 */
|
7054 10440 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7055 - | pub struct Builder {}
|
10441 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
10442 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
10443 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7056 10444 | impl Builder {
|
7057 - | /// Consumes the builder and constructs a [`MalformedContentTypeWithPayloadOutput`](crate::output::MalformedContentTypeWithPayloadOutput).
|
10445 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedContentTypeWithPayloadOutput`](crate::output::MalformedContentTypeWithPayloadOutput).
|
10446 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7058 10447 | pub fn build(self) -> crate::output::MalformedContentTypeWithPayloadOutput {
|
7059 10448 | self.build_enforcing_required_and_enum_traits()
|
7060 10449 | }
|
10450 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7061 10451 | fn build_enforcing_required_and_enum_traits(
|
7062 10452 | self,
|
7063 10453 | ) -> crate::output::MalformedContentTypeWithPayloadOutput {
|
7064 - | crate::output::MalformedContentTypeWithPayloadOutput {}
|
10454 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
10455 + | crate::output::MalformedContentTypeWithPayloadOutput {
|
10456 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
10457 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7065 10458 | }
|
10459 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7066 10460 | }
|
10461 + |
|
10462 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7067 10463 | }
|
7068 - | /// See [`MalformedContentTypeWithBodyOutput`](crate::output::MalformedContentTypeWithBodyOutput).
|
10464 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedContentTypeWithBodyOutput`](crate::output::MalformedContentTypeWithBodyOutput).
|
7069 10465 | pub mod malformed_content_type_with_body_output {
|
7070 10466 |
|
10467 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7071 10468 | impl ::std::convert::From<Builder> for crate::output::MalformedContentTypeWithBodyOutput {
|
7072 10469 | fn from(builder: Builder) -> Self {
|
7073 10470 | builder.build()
|
7074 10471 | }
|
7075 10472 | }
|
7076 - | /// A builder for [`MalformedContentTypeWithBodyOutput`](crate::output::MalformedContentTypeWithBodyOutput).
|
10473 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedContentTypeWithBodyOutput`](crate::output::MalformedContentTypeWithBodyOutput).
|
10474 + | /* RustType.kt:516 */
|
7077 10475 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7078 - | pub struct Builder {}
|
10476 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
10477 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
10478 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7079 10479 | impl Builder {
|
7080 - | /// Consumes the builder and constructs a [`MalformedContentTypeWithBodyOutput`](crate::output::MalformedContentTypeWithBodyOutput).
|
10480 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedContentTypeWithBodyOutput`](crate::output::MalformedContentTypeWithBodyOutput).
|
10481 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7081 10482 | pub fn build(self) -> crate::output::MalformedContentTypeWithBodyOutput {
|
7082 10483 | self.build_enforcing_required_and_enum_traits()
|
7083 10484 | }
|
10485 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7084 10486 | fn build_enforcing_required_and_enum_traits(
|
7085 10487 | self,
|
7086 10488 | ) -> crate::output::MalformedContentTypeWithBodyOutput {
|
7087 - | crate::output::MalformedContentTypeWithBodyOutput {}
|
10489 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
10490 + | crate::output::MalformedContentTypeWithBodyOutput {
|
10491 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
10492 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7088 10493 | }
|
10494 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7089 10495 | }
|
10496 + |
|
10497 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7090 10498 | }
|
7091 - | /// See [`MalformedContentTypeWithoutBodyOutput`](crate::output::MalformedContentTypeWithoutBodyOutput).
|
10499 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedContentTypeWithoutBodyOutput`](crate::output::MalformedContentTypeWithoutBodyOutput).
|
7092 10500 | pub mod malformed_content_type_without_body_output {
|
7093 10501 |
|
10502 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7094 10503 | impl ::std::convert::From<Builder> for crate::output::MalformedContentTypeWithoutBodyOutput {
|
7095 10504 | fn from(builder: Builder) -> Self {
|
7096 10505 | builder.build()
|
7097 10506 | }
|
7098 10507 | }
|
7099 - | /// A builder for [`MalformedContentTypeWithoutBodyOutput`](crate::output::MalformedContentTypeWithoutBodyOutput).
|
10508 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedContentTypeWithoutBodyOutput`](crate::output::MalformedContentTypeWithoutBodyOutput).
|
10509 + | /* RustType.kt:516 */
|
7100 10510 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7101 - | pub struct Builder {}
|
10511 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
10512 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
10513 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7102 10514 | impl Builder {
|
7103 - | /// Consumes the builder and constructs a [`MalformedContentTypeWithoutBodyOutput`](crate::output::MalformedContentTypeWithoutBodyOutput).
|
10515 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedContentTypeWithoutBodyOutput`](crate::output::MalformedContentTypeWithoutBodyOutput).
|
10516 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7104 10517 | pub fn build(self) -> crate::output::MalformedContentTypeWithoutBodyOutput {
|
7105 10518 | self.build_enforcing_required_and_enum_traits()
|
7106 10519 | }
|
10520 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7107 10521 | fn build_enforcing_required_and_enum_traits(
|
7108 10522 | self,
|
7109 10523 | ) -> crate::output::MalformedContentTypeWithoutBodyOutput {
|
7110 - | crate::output::MalformedContentTypeWithoutBodyOutput {}
|
10524 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
10525 + | crate::output::MalformedContentTypeWithoutBodyOutput {
|
10526 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
10527 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7111 10528 | }
|
10529 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7112 10530 | }
|
10531 + |
|
10532 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7113 10533 | }
|
7114 - | /// See [`MalformedTimestampBodyHttpDateOutput`](crate::output::MalformedTimestampBodyHttpDateOutput).
|
10534 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedTimestampBodyHttpDateOutput`](crate::output::MalformedTimestampBodyHttpDateOutput).
|
7115 10535 | pub mod malformed_timestamp_body_http_date_output {
|
7116 10536 |
|
10537 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7117 10538 | impl ::std::convert::From<Builder> for crate::output::MalformedTimestampBodyHttpDateOutput {
|
7118 10539 | fn from(builder: Builder) -> Self {
|
7119 10540 | builder.build()
|
7120 10541 | }
|
7121 10542 | }
|
7122 - | /// A builder for [`MalformedTimestampBodyHttpDateOutput`](crate::output::MalformedTimestampBodyHttpDateOutput).
|
10543 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedTimestampBodyHttpDateOutput`](crate::output::MalformedTimestampBodyHttpDateOutput).
|
10544 + | /* RustType.kt:516 */
|
7123 10545 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7124 - | pub struct Builder {}
|
10546 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
10547 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
10548 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7125 10549 | impl Builder {
|
7126 - | /// Consumes the builder and constructs a [`MalformedTimestampBodyHttpDateOutput`](crate::output::MalformedTimestampBodyHttpDateOutput).
|
10550 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedTimestampBodyHttpDateOutput`](crate::output::MalformedTimestampBodyHttpDateOutput).
|
10551 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7127 10552 | pub fn build(self) -> crate::output::MalformedTimestampBodyHttpDateOutput {
|
7128 10553 | self.build_enforcing_required_and_enum_traits()
|
7129 10554 | }
|
10555 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7130 10556 | fn build_enforcing_required_and_enum_traits(
|
7131 10557 | self,
|
7132 10558 | ) -> crate::output::MalformedTimestampBodyHttpDateOutput {
|
7133 - | crate::output::MalformedTimestampBodyHttpDateOutput {}
|
10559 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
10560 + | crate::output::MalformedTimestampBodyHttpDateOutput {
|
10561 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
10562 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7134 10563 | }
|
10564 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7135 10565 | }
|
10566 + |
|
10567 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7136 10568 | }
|
7137 - | /// See [`MalformedTimestampBodyDateTimeOutput`](crate::output::MalformedTimestampBodyDateTimeOutput).
|
10569 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedTimestampBodyDateTimeOutput`](crate::output::MalformedTimestampBodyDateTimeOutput).
|
7138 10570 | pub mod malformed_timestamp_body_date_time_output {
|
7139 10571 |
|
10572 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7140 10573 | impl ::std::convert::From<Builder> for crate::output::MalformedTimestampBodyDateTimeOutput {
|
7141 10574 | fn from(builder: Builder) -> Self {
|
7142 10575 | builder.build()
|
7143 10576 | }
|
7144 10577 | }
|
7145 - | /// A builder for [`MalformedTimestampBodyDateTimeOutput`](crate::output::MalformedTimestampBodyDateTimeOutput).
|
10578 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedTimestampBodyDateTimeOutput`](crate::output::MalformedTimestampBodyDateTimeOutput).
|
10579 + | /* RustType.kt:516 */
|
7146 10580 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7147 - | pub struct Builder {}
|
10581 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
10582 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
10583 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7148 10584 | impl Builder {
|
7149 - | /// Consumes the builder and constructs a [`MalformedTimestampBodyDateTimeOutput`](crate::output::MalformedTimestampBodyDateTimeOutput).
|
10585 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedTimestampBodyDateTimeOutput`](crate::output::MalformedTimestampBodyDateTimeOutput).
|
10586 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7150 10587 | pub fn build(self) -> crate::output::MalformedTimestampBodyDateTimeOutput {
|
7151 10588 | self.build_enforcing_required_and_enum_traits()
|
7152 10589 | }
|
10590 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7153 10591 | fn build_enforcing_required_and_enum_traits(
|
7154 10592 | self,
|
7155 10593 | ) -> crate::output::MalformedTimestampBodyDateTimeOutput {
|
7156 - | crate::output::MalformedTimestampBodyDateTimeOutput {}
|
10594 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
10595 + | crate::output::MalformedTimestampBodyDateTimeOutput {
|
10596 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
10597 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7157 10598 | }
|
10599 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7158 10600 | }
|
10601 + |
|
10602 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7159 10603 | }
|
7160 - | /// See [`MalformedTimestampBodyDefaultOutput`](crate::output::MalformedTimestampBodyDefaultOutput).
|
10604 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedTimestampBodyDefaultOutput`](crate::output::MalformedTimestampBodyDefaultOutput).
|
7161 10605 | pub mod malformed_timestamp_body_default_output {
|
7162 10606 |
|
10607 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7163 10608 | impl ::std::convert::From<Builder> for crate::output::MalformedTimestampBodyDefaultOutput {
|
7164 10609 | fn from(builder: Builder) -> Self {
|
7165 10610 | builder.build()
|
7166 10611 | }
|
7167 10612 | }
|
7168 - | /// A builder for [`MalformedTimestampBodyDefaultOutput`](crate::output::MalformedTimestampBodyDefaultOutput).
|
10613 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedTimestampBodyDefaultOutput`](crate::output::MalformedTimestampBodyDefaultOutput).
|
10614 + | /* RustType.kt:516 */
|
7169 10615 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7170 - | pub struct Builder {}
|
10616 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
10617 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
10618 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7171 10619 | impl Builder {
|
7172 - | /// Consumes the builder and constructs a [`MalformedTimestampBodyDefaultOutput`](crate::output::MalformedTimestampBodyDefaultOutput).
|
10620 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedTimestampBodyDefaultOutput`](crate::output::MalformedTimestampBodyDefaultOutput).
|
10621 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7173 10622 | pub fn build(self) -> crate::output::MalformedTimestampBodyDefaultOutput {
|
7174 10623 | self.build_enforcing_required_and_enum_traits()
|
7175 10624 | }
|
10625 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7176 10626 | fn build_enforcing_required_and_enum_traits(
|
7177 10627 | self,
|
7178 10628 | ) -> crate::output::MalformedTimestampBodyDefaultOutput {
|
7179 - | crate::output::MalformedTimestampBodyDefaultOutput {}
|
10629 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
10630 + | crate::output::MalformedTimestampBodyDefaultOutput {
|
10631 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
10632 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7180 10633 | }
|
10634 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7181 10635 | }
|
10636 + |
|
10637 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7182 10638 | }
|
7183 - | /// See [`MalformedTimestampHeaderEpochOutput`](crate::output::MalformedTimestampHeaderEpochOutput).
|
10639 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedTimestampHeaderEpochOutput`](crate::output::MalformedTimestampHeaderEpochOutput).
|
7184 10640 | pub mod malformed_timestamp_header_epoch_output {
|
7185 10641 |
|
10642 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7186 10643 | impl ::std::convert::From<Builder> for crate::output::MalformedTimestampHeaderEpochOutput {
|
7187 10644 | fn from(builder: Builder) -> Self {
|
7188 10645 | builder.build()
|
7189 10646 | }
|
7190 10647 | }
|
7191 - | /// A builder for [`MalformedTimestampHeaderEpochOutput`](crate::output::MalformedTimestampHeaderEpochOutput).
|
10648 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedTimestampHeaderEpochOutput`](crate::output::MalformedTimestampHeaderEpochOutput).
|
10649 + | /* RustType.kt:516 */
|
7192 10650 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7193 - | pub struct Builder {}
|
10651 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
10652 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
10653 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7194 10654 | impl Builder {
|
7195 - | /// Consumes the builder and constructs a [`MalformedTimestampHeaderEpochOutput`](crate::output::MalformedTimestampHeaderEpochOutput).
|
10655 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedTimestampHeaderEpochOutput`](crate::output::MalformedTimestampHeaderEpochOutput).
|
10656 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7196 10657 | pub fn build(self) -> crate::output::MalformedTimestampHeaderEpochOutput {
|
7197 10658 | self.build_enforcing_required_and_enum_traits()
|
7198 10659 | }
|
10660 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7199 10661 | fn build_enforcing_required_and_enum_traits(
|
7200 10662 | self,
|
7201 10663 | ) -> crate::output::MalformedTimestampHeaderEpochOutput {
|
7202 - | crate::output::MalformedTimestampHeaderEpochOutput {}
|
10664 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
10665 + | crate::output::MalformedTimestampHeaderEpochOutput {
|
10666 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
10667 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7203 10668 | }
|
10669 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7204 10670 | }
|
10671 + |
|
10672 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7205 10673 | }
|
7206 - | /// See [`MalformedTimestampHeaderDateTimeOutput`](crate::output::MalformedTimestampHeaderDateTimeOutput).
|
10674 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedTimestampHeaderDateTimeOutput`](crate::output::MalformedTimestampHeaderDateTimeOutput).
|
7207 10675 | pub mod malformed_timestamp_header_date_time_output {
|
7208 10676 |
|
10677 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7209 10678 | impl ::std::convert::From<Builder> for crate::output::MalformedTimestampHeaderDateTimeOutput {
|
7210 10679 | fn from(builder: Builder) -> Self {
|
7211 10680 | builder.build()
|
7212 10681 | }
|
7213 10682 | }
|
7214 - | /// A builder for [`MalformedTimestampHeaderDateTimeOutput`](crate::output::MalformedTimestampHeaderDateTimeOutput).
|
10683 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedTimestampHeaderDateTimeOutput`](crate::output::MalformedTimestampHeaderDateTimeOutput).
|
10684 + | /* RustType.kt:516 */
|
7215 10685 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7216 - | pub struct Builder {}
|
10686 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
10687 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
10688 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7217 10689 | impl Builder {
|
7218 - | /// Consumes the builder and constructs a [`MalformedTimestampHeaderDateTimeOutput`](crate::output::MalformedTimestampHeaderDateTimeOutput).
|
10690 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedTimestampHeaderDateTimeOutput`](crate::output::MalformedTimestampHeaderDateTimeOutput).
|
10691 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7219 10692 | pub fn build(self) -> crate::output::MalformedTimestampHeaderDateTimeOutput {
|
7220 10693 | self.build_enforcing_required_and_enum_traits()
|
7221 10694 | }
|
10695 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7222 10696 | fn build_enforcing_required_and_enum_traits(
|
7223 10697 | self,
|
7224 10698 | ) -> crate::output::MalformedTimestampHeaderDateTimeOutput {
|
7225 - | crate::output::MalformedTimestampHeaderDateTimeOutput {}
|
10699 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
10700 + | crate::output::MalformedTimestampHeaderDateTimeOutput {
|
10701 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
10702 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7226 10703 | }
|
10704 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7227 10705 | }
|
10706 + |
|
10707 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7228 10708 | }
|
7229 - | /// See [`MalformedTimestampHeaderDefaultOutput`](crate::output::MalformedTimestampHeaderDefaultOutput).
|
10709 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedTimestampHeaderDefaultOutput`](crate::output::MalformedTimestampHeaderDefaultOutput).
|
7230 10710 | pub mod malformed_timestamp_header_default_output {
|
7231 10711 |
|
10712 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7232 10713 | impl ::std::convert::From<Builder> for crate::output::MalformedTimestampHeaderDefaultOutput {
|
7233 10714 | fn from(builder: Builder) -> Self {
|
7234 10715 | builder.build()
|
7235 10716 | }
|
7236 10717 | }
|
7237 - | /// A builder for [`MalformedTimestampHeaderDefaultOutput`](crate::output::MalformedTimestampHeaderDefaultOutput).
|
10718 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedTimestampHeaderDefaultOutput`](crate::output::MalformedTimestampHeaderDefaultOutput).
|
10719 + | /* RustType.kt:516 */
|
7238 10720 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7239 - | pub struct Builder {}
|
10721 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
10722 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
10723 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7240 10724 | impl Builder {
|
7241 - | /// Consumes the builder and constructs a [`MalformedTimestampHeaderDefaultOutput`](crate::output::MalformedTimestampHeaderDefaultOutput).
|
10725 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedTimestampHeaderDefaultOutput`](crate::output::MalformedTimestampHeaderDefaultOutput).
|
10726 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7242 10727 | pub fn build(self) -> crate::output::MalformedTimestampHeaderDefaultOutput {
|
7243 10728 | self.build_enforcing_required_and_enum_traits()
|
7244 10729 | }
|
10730 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7245 10731 | fn build_enforcing_required_and_enum_traits(
|
7246 10732 | self,
|
7247 10733 | ) -> crate::output::MalformedTimestampHeaderDefaultOutput {
|
7248 - | crate::output::MalformedTimestampHeaderDefaultOutput {}
|
10734 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
10735 + | crate::output::MalformedTimestampHeaderDefaultOutput {
|
10736 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
10737 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7249 10738 | }
|
10739 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7250 10740 | }
|
10741 + |
|
10742 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7251 10743 | }
|
7252 - | /// See [`MalformedTimestampQueryEpochOutput`](crate::output::MalformedTimestampQueryEpochOutput).
|
10744 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedTimestampQueryEpochOutput`](crate::output::MalformedTimestampQueryEpochOutput).
|
7253 10745 | pub mod malformed_timestamp_query_epoch_output {
|
7254 10746 |
|
10747 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7255 10748 | impl ::std::convert::From<Builder> for crate::output::MalformedTimestampQueryEpochOutput {
|
7256 10749 | fn from(builder: Builder) -> Self {
|
7257 10750 | builder.build()
|
7258 10751 | }
|
7259 10752 | }
|
7260 - | /// A builder for [`MalformedTimestampQueryEpochOutput`](crate::output::MalformedTimestampQueryEpochOutput).
|
10753 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedTimestampQueryEpochOutput`](crate::output::MalformedTimestampQueryEpochOutput).
|
10754 + | /* RustType.kt:516 */
|
7261 10755 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7262 - | pub struct Builder {}
|
10756 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
10757 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
10758 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7263 10759 | impl Builder {
|
7264 - | /// Consumes the builder and constructs a [`MalformedTimestampQueryEpochOutput`](crate::output::MalformedTimestampQueryEpochOutput).
|
10760 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedTimestampQueryEpochOutput`](crate::output::MalformedTimestampQueryEpochOutput).
|
10761 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7265 10762 | pub fn build(self) -> crate::output::MalformedTimestampQueryEpochOutput {
|
7266 10763 | self.build_enforcing_required_and_enum_traits()
|
7267 10764 | }
|
10765 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7268 10766 | fn build_enforcing_required_and_enum_traits(
|
7269 10767 | self,
|
7270 10768 | ) -> crate::output::MalformedTimestampQueryEpochOutput {
|
7271 - | crate::output::MalformedTimestampQueryEpochOutput {}
|
10769 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
10770 + | crate::output::MalformedTimestampQueryEpochOutput {
|
10771 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
10772 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7272 10773 | }
|
10774 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7273 10775 | }
|
10776 + |
|
10777 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7274 10778 | }
|
7275 - | /// See [`MalformedTimestampQueryHttpDateOutput`](crate::output::MalformedTimestampQueryHttpDateOutput).
|
10779 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedTimestampQueryHttpDateOutput`](crate::output::MalformedTimestampQueryHttpDateOutput).
|
7276 10780 | pub mod malformed_timestamp_query_http_date_output {
|
7277 10781 |
|
10782 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7278 10783 | impl ::std::convert::From<Builder> for crate::output::MalformedTimestampQueryHttpDateOutput {
|
7279 10784 | fn from(builder: Builder) -> Self {
|
7280 10785 | builder.build()
|
7281 10786 | }
|
7282 10787 | }
|
7283 - | /// A builder for [`MalformedTimestampQueryHttpDateOutput`](crate::output::MalformedTimestampQueryHttpDateOutput).
|
10788 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedTimestampQueryHttpDateOutput`](crate::output::MalformedTimestampQueryHttpDateOutput).
|
10789 + | /* RustType.kt:516 */
|
7284 10790 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7285 - | pub struct Builder {}
|
10791 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
10792 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
10793 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7286 10794 | impl Builder {
|
7287 - | /// Consumes the builder and constructs a [`MalformedTimestampQueryHttpDateOutput`](crate::output::MalformedTimestampQueryHttpDateOutput).
|
10795 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedTimestampQueryHttpDateOutput`](crate::output::MalformedTimestampQueryHttpDateOutput).
|
10796 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7288 10797 | pub fn build(self) -> crate::output::MalformedTimestampQueryHttpDateOutput {
|
7289 10798 | self.build_enforcing_required_and_enum_traits()
|
7290 10799 | }
|
10800 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7291 10801 | fn build_enforcing_required_and_enum_traits(
|
7292 10802 | self,
|
7293 10803 | ) -> crate::output::MalformedTimestampQueryHttpDateOutput {
|
7294 - | crate::output::MalformedTimestampQueryHttpDateOutput {}
|
10804 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
10805 + | crate::output::MalformedTimestampQueryHttpDateOutput {
|
10806 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
10807 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7295 10808 | }
|
10809 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7296 10810 | }
|
10811 + |
|
10812 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7297 10813 | }
|
7298 - | /// See [`MalformedTimestampQueryDefaultOutput`](crate::output::MalformedTimestampQueryDefaultOutput).
|
10814 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedTimestampQueryDefaultOutput`](crate::output::MalformedTimestampQueryDefaultOutput).
|
7299 10815 | pub mod malformed_timestamp_query_default_output {
|
7300 10816 |
|
10817 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7301 10818 | impl ::std::convert::From<Builder> for crate::output::MalformedTimestampQueryDefaultOutput {
|
7302 10819 | fn from(builder: Builder) -> Self {
|
7303 10820 | builder.build()
|
7304 10821 | }
|
7305 10822 | }
|
7306 - | /// A builder for [`MalformedTimestampQueryDefaultOutput`](crate::output::MalformedTimestampQueryDefaultOutput).
|
10823 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedTimestampQueryDefaultOutput`](crate::output::MalformedTimestampQueryDefaultOutput).
|
10824 + | /* RustType.kt:516 */
|
7307 10825 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7308 - | pub struct Builder {}
|
10826 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
10827 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
10828 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7309 10829 | impl Builder {
|
7310 - | /// Consumes the builder and constructs a [`MalformedTimestampQueryDefaultOutput`](crate::output::MalformedTimestampQueryDefaultOutput).
|
10830 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedTimestampQueryDefaultOutput`](crate::output::MalformedTimestampQueryDefaultOutput).
|
10831 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7311 10832 | pub fn build(self) -> crate::output::MalformedTimestampQueryDefaultOutput {
|
7312 10833 | self.build_enforcing_required_and_enum_traits()
|
7313 10834 | }
|
10835 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7314 10836 | fn build_enforcing_required_and_enum_traits(
|
7315 10837 | self,
|
7316 10838 | ) -> crate::output::MalformedTimestampQueryDefaultOutput {
|
7317 - | crate::output::MalformedTimestampQueryDefaultOutput {}
|
10839 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
10840 + | crate::output::MalformedTimestampQueryDefaultOutput {
|
10841 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
10842 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7318 10843 | }
|
10844 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7319 10845 | }
|
10846 + |
|
10847 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7320 10848 | }
|
7321 - | /// See [`MalformedTimestampPathEpochOutput`](crate::output::MalformedTimestampPathEpochOutput).
|
10849 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedTimestampPathEpochOutput`](crate::output::MalformedTimestampPathEpochOutput).
|
7322 10850 | pub mod malformed_timestamp_path_epoch_output {
|
7323 10851 |
|
10852 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7324 10853 | impl ::std::convert::From<Builder> for crate::output::MalformedTimestampPathEpochOutput {
|
7325 10854 | fn from(builder: Builder) -> Self {
|
7326 10855 | builder.build()
|
7327 10856 | }
|
7328 10857 | }
|
7329 - | /// A builder for [`MalformedTimestampPathEpochOutput`](crate::output::MalformedTimestampPathEpochOutput).
|
10858 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedTimestampPathEpochOutput`](crate::output::MalformedTimestampPathEpochOutput).
|
10859 + | /* RustType.kt:516 */
|
7330 10860 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7331 - | pub struct Builder {}
|
10861 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
10862 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
10863 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7332 10864 | impl Builder {
|
7333 - | /// Consumes the builder and constructs a [`MalformedTimestampPathEpochOutput`](crate::output::MalformedTimestampPathEpochOutput).
|
10865 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedTimestampPathEpochOutput`](crate::output::MalformedTimestampPathEpochOutput).
|
10866 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7334 10867 | pub fn build(self) -> crate::output::MalformedTimestampPathEpochOutput {
|
7335 10868 | self.build_enforcing_required_and_enum_traits()
|
7336 10869 | }
|
10870 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7337 10871 | fn build_enforcing_required_and_enum_traits(
|
7338 10872 | self,
|
7339 10873 | ) -> crate::output::MalformedTimestampPathEpochOutput {
|
7340 - | crate::output::MalformedTimestampPathEpochOutput {}
|
10874 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
10875 + | crate::output::MalformedTimestampPathEpochOutput {
|
10876 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
10877 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7341 10878 | }
|
10879 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7342 10880 | }
|
10881 + |
|
10882 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7343 10883 | }
|
7344 - | /// See [`MalformedTimestampPathHttpDateOutput`](crate::output::MalformedTimestampPathHttpDateOutput).
|
10884 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedTimestampPathHttpDateOutput`](crate::output::MalformedTimestampPathHttpDateOutput).
|
7345 10885 | pub mod malformed_timestamp_path_http_date_output {
|
7346 10886 |
|
10887 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7347 10888 | impl ::std::convert::From<Builder> for crate::output::MalformedTimestampPathHttpDateOutput {
|
7348 10889 | fn from(builder: Builder) -> Self {
|
7349 10890 | builder.build()
|
7350 10891 | }
|
7351 10892 | }
|
7352 - | /// A builder for [`MalformedTimestampPathHttpDateOutput`](crate::output::MalformedTimestampPathHttpDateOutput).
|
10893 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedTimestampPathHttpDateOutput`](crate::output::MalformedTimestampPathHttpDateOutput).
|
10894 + | /* RustType.kt:516 */
|
7353 10895 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7354 - | pub struct Builder {}
|
10896 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
10897 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
10898 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7355 10899 | impl Builder {
|
7356 - | /// Consumes the builder and constructs a [`MalformedTimestampPathHttpDateOutput`](crate::output::MalformedTimestampPathHttpDateOutput).
|
10900 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedTimestampPathHttpDateOutput`](crate::output::MalformedTimestampPathHttpDateOutput).
|
10901 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7357 10902 | pub fn build(self) -> crate::output::MalformedTimestampPathHttpDateOutput {
|
7358 10903 | self.build_enforcing_required_and_enum_traits()
|
7359 10904 | }
|
10905 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7360 10906 | fn build_enforcing_required_and_enum_traits(
|
7361 10907 | self,
|
7362 10908 | ) -> crate::output::MalformedTimestampPathHttpDateOutput {
|
7363 - | crate::output::MalformedTimestampPathHttpDateOutput {}
|
10909 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
10910 + | crate::output::MalformedTimestampPathHttpDateOutput {
|
10911 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
10912 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7364 10913 | }
|
10914 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7365 10915 | }
|
10916 + |
|
10917 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7366 10918 | }
|
7367 - | /// See [`MalformedTimestampPathDefaultOutput`](crate::output::MalformedTimestampPathDefaultOutput).
|
10919 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedTimestampPathDefaultOutput`](crate::output::MalformedTimestampPathDefaultOutput).
|
7368 10920 | pub mod malformed_timestamp_path_default_output {
|
7369 10921 |
|
10922 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7370 10923 | impl ::std::convert::From<Builder> for crate::output::MalformedTimestampPathDefaultOutput {
|
7371 10924 | fn from(builder: Builder) -> Self {
|
7372 10925 | builder.build()
|
7373 10926 | }
|
7374 10927 | }
|
7375 - | /// A builder for [`MalformedTimestampPathDefaultOutput`](crate::output::MalformedTimestampPathDefaultOutput).
|
10928 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedTimestampPathDefaultOutput`](crate::output::MalformedTimestampPathDefaultOutput).
|
10929 + | /* RustType.kt:516 */
|
7376 10930 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7377 - | pub struct Builder {}
|
10931 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
10932 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
10933 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7378 10934 | impl Builder {
|
7379 - | /// Consumes the builder and constructs a [`MalformedTimestampPathDefaultOutput`](crate::output::MalformedTimestampPathDefaultOutput).
|
10935 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedTimestampPathDefaultOutput`](crate::output::MalformedTimestampPathDefaultOutput).
|
10936 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7380 10937 | pub fn build(self) -> crate::output::MalformedTimestampPathDefaultOutput {
|
7381 10938 | self.build_enforcing_required_and_enum_traits()
|
7382 10939 | }
|
10940 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7383 10941 | fn build_enforcing_required_and_enum_traits(
|
7384 10942 | self,
|
7385 10943 | ) -> crate::output::MalformedTimestampPathDefaultOutput {
|
7386 - | crate::output::MalformedTimestampPathDefaultOutput {}
|
10944 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
10945 + | crate::output::MalformedTimestampPathDefaultOutput {
|
10946 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
10947 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7387 10948 | }
|
10949 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7388 10950 | }
|
10951 + |
|
10952 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7389 10953 | }
|
7390 - | /// See [`MalformedStringOutput`](crate::output::MalformedStringOutput).
|
10954 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedStringOutput`](crate::output::MalformedStringOutput).
|
7391 10955 | pub mod malformed_string_output {
|
7392 10956 |
|
10957 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7393 10958 | impl ::std::convert::From<Builder> for crate::output::MalformedStringOutput {
|
7394 10959 | fn from(builder: Builder) -> Self {
|
7395 10960 | builder.build()
|
7396 10961 | }
|
7397 10962 | }
|
7398 - | /// A builder for [`MalformedStringOutput`](crate::output::MalformedStringOutput).
|
10963 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedStringOutput`](crate::output::MalformedStringOutput).
|
10964 + | /* RustType.kt:516 */
|
7399 10965 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7400 - | pub struct Builder {}
|
10966 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
10967 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
10968 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7401 10969 | impl Builder {
|
7402 - | /// Consumes the builder and constructs a [`MalformedStringOutput`](crate::output::MalformedStringOutput).
|
10970 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedStringOutput`](crate::output::MalformedStringOutput).
|
10971 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7403 10972 | pub fn build(self) -> crate::output::MalformedStringOutput {
|
7404 10973 | self.build_enforcing_required_and_enum_traits()
|
7405 10974 | }
|
10975 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7406 10976 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::MalformedStringOutput {
|
7407 - | crate::output::MalformedStringOutput {}
|
10977 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
10978 + | crate::output::MalformedStringOutput {
|
10979 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
10980 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7408 10981 | }
|
10982 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7409 10983 | }
|
10984 + |
|
10985 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7410 10986 | }
|
7411 - | /// See [`MalformedDoubleOutput`](crate::output::MalformedDoubleOutput).
|
10987 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedDoubleOutput`](crate::output::MalformedDoubleOutput).
|
7412 10988 | pub mod malformed_double_output {
|
7413 10989 |
|
10990 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7414 10991 | impl ::std::convert::From<Builder> for crate::output::MalformedDoubleOutput {
|
7415 10992 | fn from(builder: Builder) -> Self {
|
7416 10993 | builder.build()
|
7417 10994 | }
|
7418 10995 | }
|
7419 - | /// A builder for [`MalformedDoubleOutput`](crate::output::MalformedDoubleOutput).
|
10996 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedDoubleOutput`](crate::output::MalformedDoubleOutput).
|
10997 + | /* RustType.kt:516 */
|
7420 10998 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7421 - | pub struct Builder {}
|
10999 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
11000 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
11001 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7422 11002 | impl Builder {
|
7423 - | /// Consumes the builder and constructs a [`MalformedDoubleOutput`](crate::output::MalformedDoubleOutput).
|
11003 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedDoubleOutput`](crate::output::MalformedDoubleOutput).
|
11004 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7424 11005 | pub fn build(self) -> crate::output::MalformedDoubleOutput {
|
7425 11006 | self.build_enforcing_required_and_enum_traits()
|
7426 11007 | }
|
11008 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7427 11009 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::MalformedDoubleOutput {
|
7428 - | crate::output::MalformedDoubleOutput {}
|
11010 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
11011 + | crate::output::MalformedDoubleOutput {
|
11012 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
11013 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7429 11014 | }
|
11015 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7430 11016 | }
|
11017 + |
|
11018 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7431 11019 | }
|
7432 - | /// See [`MalformedFloatOutput`](crate::output::MalformedFloatOutput).
|
11020 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedFloatOutput`](crate::output::MalformedFloatOutput).
|
7433 11021 | pub mod malformed_float_output {
|
7434 11022 |
|
11023 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7435 11024 | impl ::std::convert::From<Builder> for crate::output::MalformedFloatOutput {
|
7436 11025 | fn from(builder: Builder) -> Self {
|
7437 11026 | builder.build()
|
7438 11027 | }
|
7439 11028 | }
|
7440 - | /// A builder for [`MalformedFloatOutput`](crate::output::MalformedFloatOutput).
|
11029 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedFloatOutput`](crate::output::MalformedFloatOutput).
|
11030 + | /* RustType.kt:516 */
|
7441 11031 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7442 - | pub struct Builder {}
|
11032 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
11033 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
11034 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7443 11035 | impl Builder {
|
7444 - | /// Consumes the builder and constructs a [`MalformedFloatOutput`](crate::output::MalformedFloatOutput).
|
11036 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedFloatOutput`](crate::output::MalformedFloatOutput).
|
11037 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7445 11038 | pub fn build(self) -> crate::output::MalformedFloatOutput {
|
7446 11039 | self.build_enforcing_required_and_enum_traits()
|
7447 11040 | }
|
11041 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7448 11042 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::MalformedFloatOutput {
|
7449 - | crate::output::MalformedFloatOutput {}
|
11043 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
11044 + | crate::output::MalformedFloatOutput {
|
11045 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
11046 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7450 11047 | }
|
11048 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7451 11049 | }
|
11050 + |
|
11051 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7452 11052 | }
|
7453 - | /// See [`MalformedLongOutput`](crate::output::MalformedLongOutput).
|
11053 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedLongOutput`](crate::output::MalformedLongOutput).
|
7454 11054 | pub mod malformed_long_output {
|
7455 11055 |
|
11056 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7456 11057 | impl ::std::convert::From<Builder> for crate::output::MalformedLongOutput {
|
7457 11058 | fn from(builder: Builder) -> Self {
|
7458 11059 | builder.build()
|
7459 11060 | }
|
7460 11061 | }
|
7461 - | /// A builder for [`MalformedLongOutput`](crate::output::MalformedLongOutput).
|
11062 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedLongOutput`](crate::output::MalformedLongOutput).
|
11063 + | /* RustType.kt:516 */
|
7462 11064 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7463 - | pub struct Builder {}
|
11065 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
11066 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
11067 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7464 11068 | impl Builder {
|
7465 - | /// Consumes the builder and constructs a [`MalformedLongOutput`](crate::output::MalformedLongOutput).
|
11069 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedLongOutput`](crate::output::MalformedLongOutput).
|
11070 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7466 11071 | pub fn build(self) -> crate::output::MalformedLongOutput {
|
7467 11072 | self.build_enforcing_required_and_enum_traits()
|
7468 11073 | }
|
11074 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7469 11075 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::MalformedLongOutput {
|
7470 - | crate::output::MalformedLongOutput {}
|
11076 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
11077 + | crate::output::MalformedLongOutput {
|
11078 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
11079 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7471 11080 | }
|
11081 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7472 11082 | }
|
11083 + |
|
11084 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7473 11085 | }
|
7474 - | /// See [`MalformedShortOutput`](crate::output::MalformedShortOutput).
|
11086 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedShortOutput`](crate::output::MalformedShortOutput).
|
7475 11087 | pub mod malformed_short_output {
|
7476 11088 |
|
11089 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7477 11090 | impl ::std::convert::From<Builder> for crate::output::MalformedShortOutput {
|
7478 11091 | fn from(builder: Builder) -> Self {
|
7479 11092 | builder.build()
|
7480 11093 | }
|
7481 11094 | }
|
7482 - | /// A builder for [`MalformedShortOutput`](crate::output::MalformedShortOutput).
|
11095 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedShortOutput`](crate::output::MalformedShortOutput).
|
11096 + | /* RustType.kt:516 */
|
7483 11097 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7484 - | pub struct Builder {}
|
11098 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
11099 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
11100 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7485 11101 | impl Builder {
|
7486 - | /// Consumes the builder and constructs a [`MalformedShortOutput`](crate::output::MalformedShortOutput).
|
11102 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedShortOutput`](crate::output::MalformedShortOutput).
|
11103 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7487 11104 | pub fn build(self) -> crate::output::MalformedShortOutput {
|
7488 11105 | self.build_enforcing_required_and_enum_traits()
|
7489 11106 | }
|
11107 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7490 11108 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::MalformedShortOutput {
|
7491 - | crate::output::MalformedShortOutput {}
|
11109 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
11110 + | crate::output::MalformedShortOutput {
|
11111 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
11112 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7492 11113 | }
|
11114 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7493 11115 | }
|
11116 + |
|
11117 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7494 11118 | }
|
7495 - | /// See [`MalformedByteOutput`](crate::output::MalformedByteOutput).
|
11119 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedByteOutput`](crate::output::MalformedByteOutput).
|
7496 11120 | pub mod malformed_byte_output {
|
7497 11121 |
|
11122 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7498 11123 | impl ::std::convert::From<Builder> for crate::output::MalformedByteOutput {
|
7499 11124 | fn from(builder: Builder) -> Self {
|
7500 11125 | builder.build()
|
7501 11126 | }
|
7502 11127 | }
|
7503 - | /// A builder for [`MalformedByteOutput`](crate::output::MalformedByteOutput).
|
11128 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedByteOutput`](crate::output::MalformedByteOutput).
|
11129 + | /* RustType.kt:516 */
|
7504 11130 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7505 - | pub struct Builder {}
|
11131 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
11132 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
11133 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7506 11134 | impl Builder {
|
7507 - | /// Consumes the builder and constructs a [`MalformedByteOutput`](crate::output::MalformedByteOutput).
|
11135 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedByteOutput`](crate::output::MalformedByteOutput).
|
11136 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7508 11137 | pub fn build(self) -> crate::output::MalformedByteOutput {
|
7509 11138 | self.build_enforcing_required_and_enum_traits()
|
7510 11139 | }
|
11140 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7511 11141 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::MalformedByteOutput {
|
7512 - | crate::output::MalformedByteOutput {}
|
11142 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
11143 + | crate::output::MalformedByteOutput {
|
11144 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
11145 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7513 11146 | }
|
11147 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7514 11148 | }
|
11149 + |
|
11150 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7515 11151 | }
|
7516 - | /// See [`MalformedBlobOutput`](crate::output::MalformedBlobOutput).
|
11152 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedBlobOutput`](crate::output::MalformedBlobOutput).
|
7517 11153 | pub mod malformed_blob_output {
|
7518 11154 |
|
11155 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7519 11156 | impl ::std::convert::From<Builder> for crate::output::MalformedBlobOutput {
|
7520 11157 | fn from(builder: Builder) -> Self {
|
7521 11158 | builder.build()
|
7522 11159 | }
|
7523 11160 | }
|
7524 - | /// A builder for [`MalformedBlobOutput`](crate::output::MalformedBlobOutput).
|
11161 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedBlobOutput`](crate::output::MalformedBlobOutput).
|
11162 + | /* RustType.kt:516 */
|
7525 11163 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7526 - | pub struct Builder {}
|
11164 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
11165 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
11166 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7527 11167 | impl Builder {
|
7528 - | /// Consumes the builder and constructs a [`MalformedBlobOutput`](crate::output::MalformedBlobOutput).
|
11168 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedBlobOutput`](crate::output::MalformedBlobOutput).
|
11169 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7529 11170 | pub fn build(self) -> crate::output::MalformedBlobOutput {
|
7530 11171 | self.build_enforcing_required_and_enum_traits()
|
7531 11172 | }
|
11173 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7532 11174 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::MalformedBlobOutput {
|
7533 - | crate::output::MalformedBlobOutput {}
|
11175 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
11176 + | crate::output::MalformedBlobOutput {
|
11177 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
11178 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7534 11179 | }
|
11180 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7535 11181 | }
|
11182 + |
|
11183 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7536 11184 | }
|
7537 - | /// See [`MalformedMapOutput`](crate::output::MalformedMapOutput).
|
11185 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedMapOutput`](crate::output::MalformedMapOutput).
|
7538 11186 | pub mod malformed_map_output {
|
7539 11187 |
|
11188 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7540 11189 | impl ::std::convert::From<Builder> for crate::output::MalformedMapOutput {
|
7541 11190 | fn from(builder: Builder) -> Self {
|
7542 11191 | builder.build()
|
7543 11192 | }
|
7544 11193 | }
|
7545 - | /// A builder for [`MalformedMapOutput`](crate::output::MalformedMapOutput).
|
11194 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedMapOutput`](crate::output::MalformedMapOutput).
|
11195 + | /* RustType.kt:516 */
|
7546 11196 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7547 - | pub struct Builder {}
|
11197 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
11198 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
11199 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7548 11200 | impl Builder {
|
7549 - | /// Consumes the builder and constructs a [`MalformedMapOutput`](crate::output::MalformedMapOutput).
|
11201 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedMapOutput`](crate::output::MalformedMapOutput).
|
11202 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7550 11203 | pub fn build(self) -> crate::output::MalformedMapOutput {
|
7551 11204 | self.build_enforcing_required_and_enum_traits()
|
7552 11205 | }
|
11206 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7553 11207 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::MalformedMapOutput {
|
7554 - | crate::output::MalformedMapOutput {}
|
11208 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
11209 + | crate::output::MalformedMapOutput {
|
11210 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
11211 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7555 11212 | }
|
11213 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7556 11214 | }
|
11215 + |
|
11216 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7557 11217 | }
|
7558 - | /// See [`MalformedListOutput`](crate::output::MalformedListOutput).
|
11218 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedListOutput`](crate::output::MalformedListOutput).
|
7559 11219 | pub mod malformed_list_output {
|
7560 11220 |
|
11221 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7561 11222 | impl ::std::convert::From<Builder> for crate::output::MalformedListOutput {
|
7562 11223 | fn from(builder: Builder) -> Self {
|
7563 11224 | builder.build()
|
7564 11225 | }
|
7565 11226 | }
|
7566 - | /// A builder for [`MalformedListOutput`](crate::output::MalformedListOutput).
|
11227 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedListOutput`](crate::output::MalformedListOutput).
|
11228 + | /* RustType.kt:516 */
|
7567 11229 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7568 - | pub struct Builder {}
|
11230 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
11231 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
11232 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7569 11233 | impl Builder {
|
7570 - | /// Consumes the builder and constructs a [`MalformedListOutput`](crate::output::MalformedListOutput).
|
11234 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedListOutput`](crate::output::MalformedListOutput).
|
11235 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7571 11236 | pub fn build(self) -> crate::output::MalformedListOutput {
|
7572 11237 | self.build_enforcing_required_and_enum_traits()
|
7573 11238 | }
|
11239 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7574 11240 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::MalformedListOutput {
|
7575 - | crate::output::MalformedListOutput {}
|
11241 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
11242 + | crate::output::MalformedListOutput {
|
11243 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
11244 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7576 11245 | }
|
11246 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7577 11247 | }
|
11248 + |
|
11249 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7578 11250 | }
|
7579 - | /// See [`MalformedBooleanOutput`](crate::output::MalformedBooleanOutput).
|
11251 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedBooleanOutput`](crate::output::MalformedBooleanOutput).
|
7580 11252 | pub mod malformed_boolean_output {
|
7581 11253 |
|
11254 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7582 11255 | impl ::std::convert::From<Builder> for crate::output::MalformedBooleanOutput {
|
7583 11256 | fn from(builder: Builder) -> Self {
|
7584 11257 | builder.build()
|
7585 11258 | }
|
7586 11259 | }
|
7587 - | /// A builder for [`MalformedBooleanOutput`](crate::output::MalformedBooleanOutput).
|
11260 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedBooleanOutput`](crate::output::MalformedBooleanOutput).
|
11261 + | /* RustType.kt:516 */
|
7588 11262 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7589 - | pub struct Builder {}
|
11263 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
11264 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
11265 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7590 11266 | impl Builder {
|
7591 - | /// Consumes the builder and constructs a [`MalformedBooleanOutput`](crate::output::MalformedBooleanOutput).
|
11267 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedBooleanOutput`](crate::output::MalformedBooleanOutput).
|
11268 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7592 11269 | pub fn build(self) -> crate::output::MalformedBooleanOutput {
|
7593 11270 | self.build_enforcing_required_and_enum_traits()
|
7594 11271 | }
|
11272 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7595 11273 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::MalformedBooleanOutput {
|
7596 - | crate::output::MalformedBooleanOutput {}
|
11274 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
11275 + | crate::output::MalformedBooleanOutput {
|
11276 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
11277 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7597 11278 | }
|
11279 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7598 11280 | }
|
11281 + |
|
11282 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7599 11283 | }
|
7600 - | /// See [`MalformedUnionOutput`](crate::output::MalformedUnionOutput).
|
11284 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedUnionOutput`](crate::output::MalformedUnionOutput).
|
7601 11285 | pub mod malformed_union_output {
|
7602 11286 |
|
11287 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7603 11288 | impl ::std::convert::From<Builder> for crate::output::MalformedUnionOutput {
|
7604 11289 | fn from(builder: Builder) -> Self {
|
7605 11290 | builder.build()
|
7606 11291 | }
|
7607 11292 | }
|
7608 - | /// A builder for [`MalformedUnionOutput`](crate::output::MalformedUnionOutput).
|
11293 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedUnionOutput`](crate::output::MalformedUnionOutput).
|
11294 + | /* RustType.kt:516 */
|
7609 11295 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7610 - | pub struct Builder {}
|
11296 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
11297 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
11298 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7611 11299 | impl Builder {
|
7612 - | /// Consumes the builder and constructs a [`MalformedUnionOutput`](crate::output::MalformedUnionOutput).
|
11300 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedUnionOutput`](crate::output::MalformedUnionOutput).
|
11301 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7613 11302 | pub fn build(self) -> crate::output::MalformedUnionOutput {
|
7614 11303 | self.build_enforcing_required_and_enum_traits()
|
7615 11304 | }
|
11305 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7616 11306 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::MalformedUnionOutput {
|
7617 - | crate::output::MalformedUnionOutput {}
|
11307 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
11308 + | crate::output::MalformedUnionOutput {
|
11309 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
11310 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7618 11311 | }
|
11312 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7619 11313 | }
|
11314 + |
|
11315 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7620 11316 | }
|
7621 - | /// See [`MalformedIntegerOutput`](crate::output::MalformedIntegerOutput).
|
11317 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedIntegerOutput`](crate::output::MalformedIntegerOutput).
|
7622 11318 | pub mod malformed_integer_output {
|
7623 11319 |
|
11320 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7624 11321 | impl ::std::convert::From<Builder> for crate::output::MalformedIntegerOutput {
|
7625 11322 | fn from(builder: Builder) -> Self {
|
7626 11323 | builder.build()
|
7627 11324 | }
|
7628 11325 | }
|
7629 - | /// A builder for [`MalformedIntegerOutput`](crate::output::MalformedIntegerOutput).
|
11326 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedIntegerOutput`](crate::output::MalformedIntegerOutput).
|
11327 + | /* RustType.kt:516 */
|
7630 11328 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7631 - | pub struct Builder {}
|
11329 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
11330 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
11331 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7632 11332 | impl Builder {
|
7633 - | /// Consumes the builder and constructs a [`MalformedIntegerOutput`](crate::output::MalformedIntegerOutput).
|
11333 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedIntegerOutput`](crate::output::MalformedIntegerOutput).
|
11334 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7634 11335 | pub fn build(self) -> crate::output::MalformedIntegerOutput {
|
7635 11336 | self.build_enforcing_required_and_enum_traits()
|
7636 11337 | }
|
11338 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7637 11339 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::MalformedIntegerOutput {
|
7638 - | crate::output::MalformedIntegerOutput {}
|
11340 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
11341 + | crate::output::MalformedIntegerOutput {
|
11342 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
11343 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7639 11344 | }
|
11345 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7640 11346 | }
|
11347 + |
|
11348 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7641 11349 | }
|
7642 - | /// See [`MalformedRequestBodyOutput`](crate::output::MalformedRequestBodyOutput).
|
11350 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MalformedRequestBodyOutput`](crate::output::MalformedRequestBodyOutput).
|
7643 11351 | pub mod malformed_request_body_output {
|
7644 11352 |
|
11353 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7645 11354 | impl ::std::convert::From<Builder> for crate::output::MalformedRequestBodyOutput {
|
7646 11355 | fn from(builder: Builder) -> Self {
|
7647 11356 | builder.build()
|
7648 11357 | }
|
7649 11358 | }
|
7650 - | /// A builder for [`MalformedRequestBodyOutput`](crate::output::MalformedRequestBodyOutput).
|
11359 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MalformedRequestBodyOutput`](crate::output::MalformedRequestBodyOutput).
|
11360 + | /* RustType.kt:516 */
|
7651 11361 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7652 - | pub struct Builder {}
|
11362 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
11363 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
11364 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7653 11365 | impl Builder {
|
7654 - | /// Consumes the builder and constructs a [`MalformedRequestBodyOutput`](crate::output::MalformedRequestBodyOutput).
|
11366 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MalformedRequestBodyOutput`](crate::output::MalformedRequestBodyOutput).
|
11367 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7655 11368 | pub fn build(self) -> crate::output::MalformedRequestBodyOutput {
|
7656 11369 | self.build_enforcing_required_and_enum_traits()
|
7657 11370 | }
|
11371 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7658 11372 | fn build_enforcing_required_and_enum_traits(
|
7659 11373 | self,
|
7660 11374 | ) -> crate::output::MalformedRequestBodyOutput {
|
7661 - | crate::output::MalformedRequestBodyOutput {}
|
11375 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
11376 + | crate::output::MalformedRequestBodyOutput {
|
11377 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
11378 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7662 11379 | }
|
11380 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7663 11381 | }
|
11382 + |
|
11383 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7664 11384 | }
|
7665 - | /// See [`HttpChecksumRequiredOutput`](crate::output::HttpChecksumRequiredOutput).
|
11385 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`HttpChecksumRequiredOutput`](crate::output::HttpChecksumRequiredOutput).
|
7666 11386 | pub mod http_checksum_required_output {
|
7667 11387 |
|
11388 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7668 11389 | impl ::std::convert::From<Builder> for crate::output::HttpChecksumRequiredOutput {
|
7669 11390 | fn from(builder: Builder) -> Self {
|
7670 11391 | builder.build()
|
7671 11392 | }
|
7672 11393 | }
|
7673 - | /// A builder for [`HttpChecksumRequiredOutput`](crate::output::HttpChecksumRequiredOutput).
|
11394 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`HttpChecksumRequiredOutput`](crate::output::HttpChecksumRequiredOutput).
|
11395 + | /* RustType.kt:516 */
|
7674 11396 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
11397 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
7675 11398 | pub struct Builder {
|
11399 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
7676 11400 | pub(crate) foo: ::std::option::Option<::std::string::String>,
|
11401 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
7677 11402 | }
|
11403 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7678 11404 | impl Builder {
|
11405 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
7679 11406 | #[allow(missing_docs)] // documentation missing in model
|
11407 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
7680 11408 | pub fn foo(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
|
7681 - | self.foo = input;
|
11409 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
11410 + | self.foo =
|
11411 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
11412 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
7682 11413 | self
|
11414 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
7683 11415 | }
|
7684 - | /// Consumes the builder and constructs a [`HttpChecksumRequiredOutput`](crate::output::HttpChecksumRequiredOutput).
|
11416 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`HttpChecksumRequiredOutput`](crate::output::HttpChecksumRequiredOutput).
|
11417 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7685 11418 | pub fn build(self) -> crate::output::HttpChecksumRequiredOutput {
|
7686 11419 | self.build_enforcing_required_and_enum_traits()
|
7687 11420 | }
|
11421 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7688 11422 | fn build_enforcing_required_and_enum_traits(
|
7689 11423 | self,
|
7690 11424 | ) -> crate::output::HttpChecksumRequiredOutput {
|
7691 - | crate::output::HttpChecksumRequiredOutput { foo: self.foo }
|
11425 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
11426 + | crate::output::HttpChecksumRequiredOutput {
|
11427 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
11428 + | foo: self.foo,
|
11429 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
11430 + | }
|
11431 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7692 11432 | }
|
11433 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7693 11434 | }
|
11435 + |
|
11436 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7694 11437 | }
|
7695 - | /// See [`HostWithPathOperationOutput`](crate::output::HostWithPathOperationOutput).
|
11438 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`HostWithPathOperationOutput`](crate::output::HostWithPathOperationOutput).
|
7696 11439 | pub mod host_with_path_operation_output {
|
7697 11440 |
|
11441 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7698 11442 | impl ::std::convert::From<Builder> for crate::output::HostWithPathOperationOutput {
|
7699 11443 | fn from(builder: Builder) -> Self {
|
7700 11444 | builder.build()
|
7701 11445 | }
|
7702 11446 | }
|
7703 - | /// A builder for [`HostWithPathOperationOutput`](crate::output::HostWithPathOperationOutput).
|
11447 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`HostWithPathOperationOutput`](crate::output::HostWithPathOperationOutput).
|
11448 + | /* RustType.kt:516 */
|
7704 11449 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7705 - | pub struct Builder {}
|
11450 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
11451 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
11452 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7706 11453 | impl Builder {
|
7707 - | /// Consumes the builder and constructs a [`HostWithPathOperationOutput`](crate::output::HostWithPathOperationOutput).
|
11454 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`HostWithPathOperationOutput`](crate::output::HostWithPathOperationOutput).
|
11455 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7708 11456 | pub fn build(self) -> crate::output::HostWithPathOperationOutput {
|
7709 11457 | self.build_enforcing_required_and_enum_traits()
|
7710 11458 | }
|
11459 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7711 11460 | fn build_enforcing_required_and_enum_traits(
|
7712 11461 | self,
|
7713 11462 | ) -> crate::output::HostWithPathOperationOutput {
|
7714 - | crate::output::HostWithPathOperationOutput {}
|
11463 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
11464 + | crate::output::HostWithPathOperationOutput {
|
11465 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
11466 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7715 11467 | }
|
11468 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7716 11469 | }
|
11470 + |
|
11471 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7717 11472 | }
|
7718 - | /// See [`EndpointWithHostLabelOperationOutput`](crate::output::EndpointWithHostLabelOperationOutput).
|
11473 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`EndpointWithHostLabelOperationOutput`](crate::output::EndpointWithHostLabelOperationOutput).
|
7719 11474 | pub mod endpoint_with_host_label_operation_output {
|
7720 11475 |
|
11476 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7721 11477 | impl ::std::convert::From<Builder> for crate::output::EndpointWithHostLabelOperationOutput {
|
7722 11478 | fn from(builder: Builder) -> Self {
|
7723 11479 | builder.build()
|
7724 11480 | }
|
7725 11481 | }
|
7726 - | /// A builder for [`EndpointWithHostLabelOperationOutput`](crate::output::EndpointWithHostLabelOperationOutput).
|
11482 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`EndpointWithHostLabelOperationOutput`](crate::output::EndpointWithHostLabelOperationOutput).
|
11483 + | /* RustType.kt:516 */
|
7727 11484 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7728 - | pub struct Builder {}
|
11485 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
11486 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
11487 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7729 11488 | impl Builder {
|
7730 - | /// Consumes the builder and constructs a [`EndpointWithHostLabelOperationOutput`](crate::output::EndpointWithHostLabelOperationOutput).
|
11489 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`EndpointWithHostLabelOperationOutput`](crate::output::EndpointWithHostLabelOperationOutput).
|
11490 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7731 11491 | pub fn build(self) -> crate::output::EndpointWithHostLabelOperationOutput {
|
7732 11492 | self.build_enforcing_required_and_enum_traits()
|
7733 11493 | }
|
11494 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7734 11495 | fn build_enforcing_required_and_enum_traits(
|
7735 11496 | self,
|
7736 11497 | ) -> crate::output::EndpointWithHostLabelOperationOutput {
|
7737 - | crate::output::EndpointWithHostLabelOperationOutput {}
|
11498 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
11499 + | crate::output::EndpointWithHostLabelOperationOutput {
|
11500 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
11501 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7738 11502 | }
|
11503 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7739 11504 | }
|
11505 + |
|
11506 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7740 11507 | }
|
7741 - | /// See [`EndpointOperationOutput`](crate::output::EndpointOperationOutput).
|
11508 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`EndpointOperationOutput`](crate::output::EndpointOperationOutput).
|
7742 11509 | pub mod endpoint_operation_output {
|
7743 11510 |
|
11511 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7744 11512 | impl ::std::convert::From<Builder> for crate::output::EndpointOperationOutput {
|
7745 11513 | fn from(builder: Builder) -> Self {
|
7746 11514 | builder.build()
|
7747 11515 | }
|
7748 11516 | }
|
7749 - | /// A builder for [`EndpointOperationOutput`](crate::output::EndpointOperationOutput).
|
11517 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`EndpointOperationOutput`](crate::output::EndpointOperationOutput).
|
11518 + | /* RustType.kt:516 */
|
7750 11519 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
7751 - | pub struct Builder {}
|
11520 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
11521 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
11522 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7752 11523 | impl Builder {
|
7753 - | /// Consumes the builder and constructs a [`EndpointOperationOutput`](crate::output::EndpointOperationOutput).
|
11524 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`EndpointOperationOutput`](crate::output::EndpointOperationOutput).
|
11525 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7754 11526 | pub fn build(self) -> crate::output::EndpointOperationOutput {
|
7755 11527 | self.build_enforcing_required_and_enum_traits()
|
7756 11528 | }
|
11529 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7757 11530 | fn build_enforcing_required_and_enum_traits(
|
7758 11531 | self,
|
7759 11532 | ) -> crate::output::EndpointOperationOutput {
|
7760 - | crate::output::EndpointOperationOutput {}
|
11533 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
11534 + | crate::output::EndpointOperationOutput {
|
11535 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
11536 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7761 11537 | }
|
11538 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7762 11539 | }
|
11540 + |
|
11541 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7763 11542 | }
|
7764 - | /// See [`PostUnionWithJsonNameOutput`](crate::output::PostUnionWithJsonNameOutput).
|
11543 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`PostUnionWithJsonNameOutput`](crate::output::PostUnionWithJsonNameOutput).
|
7765 11544 | pub mod post_union_with_json_name_output {
|
7766 11545 |
|
11546 + | /* RustType.kt:516 */
|
7767 11547 | #[derive(::std::cmp::PartialEq, ::std::fmt::Debug)]
|
7768 - | /// Holds one variant for each of the ways the builder can fail.
|
7769 - |
|
11548 + | /// /* ServerBuilderConstraintViolations.kt:72 */Holds one variant for each of the ways the builder can fail.
|
11549 + | /* ServerBuilderConstraintViolations.kt:75 */
|
7770 11550 | #[allow(clippy::enum_variant_names)]
|
7771 11551 | pub enum ConstraintViolation {
|
7772 - | /// `value` was not provided but it is required when building `PostUnionWithJsonNameOutput`.
|
11552 + | /// /* ServerBuilderConstraintViolations.kt:138 */`value` was not provided but it is required when building `PostUnionWithJsonNameOutput`.
|
11553 + | /* ServerBuilderConstraintViolations.kt:143 */
|
7773 11554 | MissingValue,
|
11555 + | /* ServerBuilderConstraintViolations.kt:75 */
|
7774 11556 | }
|
11557 + | /* ServerBuilderConstraintViolations.kt:117 */
|
7775 11558 | impl ::std::fmt::Display for ConstraintViolation {
|
11559 + | /* ServerBuilderConstraintViolations.kt:118 */
|
7776 11560 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
11561 + | /* ServerBuilderConstraintViolations.kt:119 */
|
7777 11562 | match self {
|
7778 - | ConstraintViolation::MissingValue => write!(f, "`value` was not provided but it is required when building `PostUnionWithJsonNameOutput`"),
|
7779 - | }
|
11563 + | /* ServerBuilderConstraintViolations.kt:127 */ConstraintViolation::MissingValue => write!(f, "`value` was not provided but it is required when building `PostUnionWithJsonNameOutput`"),
|
11564 + | /* ServerBuilderConstraintViolations.kt:119 */}
|
11565 + | /* ServerBuilderConstraintViolations.kt:118 */
|
7780 11566 | }
|
11567 + | /* ServerBuilderConstraintViolations.kt:117 */
|
7781 11568 | }
|
11569 + | /* ServerBuilderConstraintViolations.kt:84 */
|
7782 11570 | impl ::std::error::Error for ConstraintViolation {}
|
11571 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:254 */
|
7783 11572 | impl ::std::convert::TryFrom<Builder> for crate::output::PostUnionWithJsonNameOutput {
|
7784 11573 | type Error = ConstraintViolation;
|
7785 11574 |
|
7786 11575 | fn try_from(builder: Builder) -> ::std::result::Result<Self, Self::Error> {
|
7787 11576 | builder.build()
|
7788 11577 | }
|
7789 11578 | }
|
7790 - | /// A builder for [`PostUnionWithJsonNameOutput`](crate::output::PostUnionWithJsonNameOutput).
|
11579 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`PostUnionWithJsonNameOutput`](crate::output::PostUnionWithJsonNameOutput).
|
11580 + | /* RustType.kt:516 */
|
7791 11581 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
11582 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
7792 11583 | pub struct Builder {
|
11584 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
7793 11585 | pub(crate) value: ::std::option::Option<crate::model::UnionWithJsonName>,
|
11586 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
7794 11587 | }
|
11588 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7795 11589 | impl Builder {
|
11590 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
7796 11591 | #[allow(missing_docs)] // documentation missing in model
|
11592 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
7797 11593 | pub fn value(mut self, input: crate::model::UnionWithJsonName) -> Self {
|
7798 - | self.value = Some(input);
|
11594 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
11595 + | self.value =
|
11596 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
11597 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
11598 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
11599 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
7799 11600 | self
|
11601 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
7800 11602 | }
|
7801 - | /// Consumes the builder and constructs a [`PostUnionWithJsonNameOutput`](crate::output::PostUnionWithJsonNameOutput).
|
7802 - | ///
|
11603 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`PostUnionWithJsonNameOutput`](crate::output::PostUnionWithJsonNameOutput).
|
11604 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:152 */
|
7803 11605 | /// The builder fails to construct a [`PostUnionWithJsonNameOutput`](crate::output::PostUnionWithJsonNameOutput) if you do not provide a value for all non-`Option`al members.
|
7804 11606 | ///
|
11607 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7805 11608 | pub fn build(
|
7806 11609 | self,
|
7807 11610 | ) -> Result<crate::output::PostUnionWithJsonNameOutput, ConstraintViolation> {
|
7808 11611 | self.build_enforcing_required_and_enum_traits()
|
7809 11612 | }
|
11613 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7810 11614 | fn build_enforcing_required_and_enum_traits(
|
7811 11615 | self,
|
7812 11616 | ) -> Result<crate::output::PostUnionWithJsonNameOutput, ConstraintViolation> {
|
7813 - | Ok(crate::output::PostUnionWithJsonNameOutput {
|
7814 - | value: self.value.ok_or(ConstraintViolation::MissingValue)?,
|
7815 - | })
|
7816 - | }
|
7817 - | }
|
7818 - | }
|
7819 - | /// See [`PostPlayerActionOutput`](crate::output::PostPlayerActionOutput).
|
11617 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:175 */
|
11618 + | Ok(
|
11619 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
11620 + | crate::output::PostUnionWithJsonNameOutput {
|
11621 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
11622 + | value: self
|
11623 + | .value
|
11624 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:202 */
|
11625 + | .ok_or(ConstraintViolation::MissingValue)?,
|
11626 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
11627 + | }, /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:175 */
|
11628 + | )
|
11629 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
11630 + | }
|
11631 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
11632 + | }
|
11633 + |
|
11634 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
11635 + | }
|
11636 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`PostPlayerActionOutput`](crate::output::PostPlayerActionOutput).
|
7820 11637 | pub mod post_player_action_output {
|
7821 11638 |
|
11639 + | /* RustType.kt:516 */
|
7822 11640 | #[derive(::std::cmp::PartialEq, ::std::fmt::Debug)]
|
7823 - | /// Holds one variant for each of the ways the builder can fail.
|
7824 - |
|
11641 + | /// /* ServerBuilderConstraintViolations.kt:72 */Holds one variant for each of the ways the builder can fail.
|
11642 + | /* ServerBuilderConstraintViolations.kt:75 */
|
7825 11643 | #[allow(clippy::enum_variant_names)]
|
7826 11644 | pub enum ConstraintViolation {
|
7827 - | /// `action` was not provided but it is required when building `PostPlayerActionOutput`.
|
11645 + | /// /* ServerBuilderConstraintViolations.kt:138 */`action` was not provided but it is required when building `PostPlayerActionOutput`.
|
11646 + | /* ServerBuilderConstraintViolations.kt:143 */
|
7828 11647 | MissingAction,
|
11648 + | /* ServerBuilderConstraintViolations.kt:75 */
|
7829 11649 | }
|
11650 + | /* ServerBuilderConstraintViolations.kt:117 */
|
7830 11651 | impl ::std::fmt::Display for ConstraintViolation {
|
11652 + | /* ServerBuilderConstraintViolations.kt:118 */
|
7831 11653 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
11654 + | /* ServerBuilderConstraintViolations.kt:119 */
|
7832 11655 | match self {
|
7833 - | ConstraintViolation::MissingAction => write!(f, "`action` was not provided but it is required when building `PostPlayerActionOutput`"),
|
7834 - | }
|
11656 + | /* ServerBuilderConstraintViolations.kt:127 */ConstraintViolation::MissingAction => write!(f, "`action` was not provided but it is required when building `PostPlayerActionOutput`"),
|
11657 + | /* ServerBuilderConstraintViolations.kt:119 */}
|
11658 + | /* ServerBuilderConstraintViolations.kt:118 */
|
7835 11659 | }
|
11660 + | /* ServerBuilderConstraintViolations.kt:117 */
|
7836 11661 | }
|
11662 + | /* ServerBuilderConstraintViolations.kt:84 */
|
7837 11663 | impl ::std::error::Error for ConstraintViolation {}
|
11664 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:254 */
|
7838 11665 | impl ::std::convert::TryFrom<Builder> for crate::output::PostPlayerActionOutput {
|
7839 11666 | type Error = ConstraintViolation;
|
7840 11667 |
|
7841 11668 | fn try_from(builder: Builder) -> ::std::result::Result<Self, Self::Error> {
|
7842 11669 | builder.build()
|
7843 11670 | }
|
7844 11671 | }
|
7845 - | /// A builder for [`PostPlayerActionOutput`](crate::output::PostPlayerActionOutput).
|
11672 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`PostPlayerActionOutput`](crate::output::PostPlayerActionOutput).
|
11673 + | /* RustType.kt:516 */
|
7846 11674 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
11675 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
7847 11676 | pub struct Builder {
|
11677 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
7848 11678 | pub(crate) action: ::std::option::Option<crate::model::PlayerAction>,
|
11679 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
7849 11680 | }
|
11681 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7850 11682 | impl Builder {
|
11683 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
7851 11684 | #[allow(missing_docs)] // documentation missing in model
|
11685 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
7852 11686 | pub fn action(mut self, input: crate::model::PlayerAction) -> Self {
|
7853 - | self.action = Some(input);
|
11687 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
11688 + | self.action =
|
11689 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
11690 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
11691 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
11692 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
7854 11693 | self
|
11694 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
7855 11695 | }
|
7856 - | /// Consumes the builder and constructs a [`PostPlayerActionOutput`](crate::output::PostPlayerActionOutput).
|
7857 - | ///
|
11696 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`PostPlayerActionOutput`](crate::output::PostPlayerActionOutput).
|
11697 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:152 */
|
7858 11698 | /// The builder fails to construct a [`PostPlayerActionOutput`](crate::output::PostPlayerActionOutput) if you do not provide a value for all non-`Option`al members.
|
7859 11699 | ///
|
11700 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7860 11701 | pub fn build(self) -> Result<crate::output::PostPlayerActionOutput, ConstraintViolation> {
|
7861 11702 | self.build_enforcing_required_and_enum_traits()
|
7862 11703 | }
|
11704 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7863 11705 | fn build_enforcing_required_and_enum_traits(
|
7864 11706 | self,
|
7865 11707 | ) -> Result<crate::output::PostPlayerActionOutput, ConstraintViolation> {
|
7866 - | Ok(crate::output::PostPlayerActionOutput {
|
7867 - | action: self.action.ok_or(ConstraintViolation::MissingAction)?,
|
7868 - | })
|
7869 - | }
|
7870 - | }
|
7871 - | }
|
7872 - | /// See [`JsonUnionsOutput`](crate::output::JsonUnionsOutput).
|
11708 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:175 */
|
11709 + | Ok(
|
11710 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
11711 + | crate::output::PostPlayerActionOutput {
|
11712 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
11713 + | action: self
|
11714 + | .action
|
11715 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:202 */
|
11716 + | .ok_or(ConstraintViolation::MissingAction)?,
|
11717 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
11718 + | }, /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:175 */
|
11719 + | )
|
11720 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
11721 + | }
|
11722 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
11723 + | }
|
11724 + |
|
11725 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
11726 + | }
|
11727 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`JsonUnionsOutput`](crate::output::JsonUnionsOutput).
|
7873 11728 | pub mod json_unions_output {
|
7874 11729 |
|
11730 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7875 11731 | impl ::std::convert::From<Builder> for crate::output::JsonUnionsOutput {
|
7876 11732 | fn from(builder: Builder) -> Self {
|
7877 11733 | builder.build()
|
7878 11734 | }
|
7879 11735 | }
|
7880 - | /// A builder for [`JsonUnionsOutput`](crate::output::JsonUnionsOutput).
|
11736 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`JsonUnionsOutput`](crate::output::JsonUnionsOutput).
|
11737 + | /* RustType.kt:516 */
|
7881 11738 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
11739 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
7882 11740 | pub struct Builder {
|
11741 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
7883 11742 | pub(crate) contents: ::std::option::Option<crate::model::MyUnion>,
|
11743 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
7884 11744 | }
|
11745 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7885 11746 | impl Builder {
|
7886 - | /// A union with a representative set of types for members.
|
11747 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */A union with a representative set of types for members.
|
11748 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
7887 11749 | pub fn contents(mut self, input: ::std::option::Option<crate::model::MyUnion>) -> Self {
|
7888 - | self.contents = input;
|
11750 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
11751 + | self.contents =
|
11752 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
11753 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
7889 11754 | self
|
11755 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
7890 11756 | }
|
7891 - | /// Consumes the builder and constructs a [`JsonUnionsOutput`](crate::output::JsonUnionsOutput).
|
11757 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`JsonUnionsOutput`](crate::output::JsonUnionsOutput).
|
11758 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7892 11759 | pub fn build(self) -> crate::output::JsonUnionsOutput {
|
7893 11760 | self.build_enforcing_required_and_enum_traits()
|
7894 11761 | }
|
11762 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7895 11763 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::JsonUnionsOutput {
|
11764 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
7896 11765 | crate::output::JsonUnionsOutput {
|
11766 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
7897 11767 | contents: self.contents,
|
11768 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
7898 11769 | }
|
11770 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7899 11771 | }
|
11772 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7900 11773 | }
|
11774 + |
|
11775 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7901 11776 | }
|
7902 - | /// See [`DocumentTypeAsMapValueOutput`](crate::output::DocumentTypeAsMapValueOutput).
|
11777 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`DocumentTypeAsMapValueOutput`](crate::output::DocumentTypeAsMapValueOutput).
|
7903 11778 | pub mod document_type_as_map_value_output {
|
7904 11779 |
|
11780 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7905 11781 | impl ::std::convert::From<Builder> for crate::output::DocumentTypeAsMapValueOutput {
|
7906 11782 | fn from(builder: Builder) -> Self {
|
7907 11783 | builder.build()
|
7908 11784 | }
|
7909 11785 | }
|
7910 - | /// A builder for [`DocumentTypeAsMapValueOutput`](crate::output::DocumentTypeAsMapValueOutput).
|
11786 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`DocumentTypeAsMapValueOutput`](crate::output::DocumentTypeAsMapValueOutput).
|
11787 + | /* RustType.kt:516 */
|
7911 11788 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
11789 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
7912 11790 | pub struct Builder {
|
11791 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
7913 11792 | pub(crate) doc_valued_map: ::std::option::Option<
|
7914 11793 | ::std::collections::HashMap<
|
7915 11794 | ::std::string::String,
|
7916 11795 | ::aws_smithy_http_server_python::types::Document,
|
7917 11796 | >,
|
7918 11797 | >,
|
11798 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
7919 11799 | }
|
11800 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7920 11801 | impl Builder {
|
11802 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
7921 11803 | #[allow(missing_docs)] // documentation missing in model
|
11804 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
7922 11805 | pub fn doc_valued_map(
|
7923 11806 | mut self,
|
7924 11807 | input: ::std::option::Option<
|
7925 11808 | ::std::collections::HashMap<
|
7926 11809 | ::std::string::String,
|
7927 11810 | ::aws_smithy_http_server_python::types::Document,
|
7928 11811 | >,
|
7929 11812 | >,
|
7930 11813 | ) -> Self {
|
7931 - | self.doc_valued_map = input;
|
11814 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
11815 + | self.doc_valued_map =
|
11816 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
11817 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
7932 11818 | self
|
11819 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
7933 11820 | }
|
7934 - | /// Consumes the builder and constructs a [`DocumentTypeAsMapValueOutput`](crate::output::DocumentTypeAsMapValueOutput).
|
11821 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`DocumentTypeAsMapValueOutput`](crate::output::DocumentTypeAsMapValueOutput).
|
11822 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7935 11823 | pub fn build(self) -> crate::output::DocumentTypeAsMapValueOutput {
|
7936 11824 | self.build_enforcing_required_and_enum_traits()
|
7937 11825 | }
|
11826 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7938 11827 | fn build_enforcing_required_and_enum_traits(
|
7939 11828 | self,
|
7940 11829 | ) -> crate::output::DocumentTypeAsMapValueOutput {
|
11830 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
7941 11831 | crate::output::DocumentTypeAsMapValueOutput {
|
11832 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
7942 11833 | doc_valued_map: self.doc_valued_map,
|
11834 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
7943 11835 | }
|
11836 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7944 11837 | }
|
11838 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7945 11839 | }
|
11840 + |
|
11841 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7946 11842 | }
|
7947 - | /// See [`DocumentTypeAsPayloadOutput`](crate::output::DocumentTypeAsPayloadOutput).
|
11843 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`DocumentTypeAsPayloadOutput`](crate::output::DocumentTypeAsPayloadOutput).
|
7948 11844 | pub mod document_type_as_payload_output {
|
7949 11845 |
|
11846 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7950 11847 | impl ::std::convert::From<Builder> for crate::output::DocumentTypeAsPayloadOutput {
|
7951 11848 | fn from(builder: Builder) -> Self {
|
7952 11849 | builder.build()
|
7953 11850 | }
|
7954 11851 | }
|
7955 - | /// A builder for [`DocumentTypeAsPayloadOutput`](crate::output::DocumentTypeAsPayloadOutput).
|
11852 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`DocumentTypeAsPayloadOutput`](crate::output::DocumentTypeAsPayloadOutput).
|
11853 + | /* RustType.kt:516 */
|
7956 11854 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
11855 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
7957 11856 | pub struct Builder {
|
11857 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
7958 11858 | pub(crate) document_value:
|
7959 11859 | ::std::option::Option<::aws_smithy_http_server_python::types::Document>,
|
11860 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
7960 11861 | }
|
11862 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7961 11863 | impl Builder {
|
11864 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
7962 11865 | #[allow(missing_docs)] // documentation missing in model
|
11866 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
7963 11867 | pub fn document_value(
|
7964 11868 | mut self,
|
7965 11869 | input: ::std::option::Option<::aws_smithy_http_server_python::types::Document>,
|
7966 11870 | ) -> Self {
|
7967 - | self.document_value = input;
|
11871 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
11872 + | self.document_value =
|
11873 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
11874 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
7968 11875 | self
|
11876 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
7969 11877 | }
|
7970 - | /// Consumes the builder and constructs a [`DocumentTypeAsPayloadOutput`](crate::output::DocumentTypeAsPayloadOutput).
|
11878 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`DocumentTypeAsPayloadOutput`](crate::output::DocumentTypeAsPayloadOutput).
|
11879 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
7971 11880 | pub fn build(self) -> crate::output::DocumentTypeAsPayloadOutput {
|
7972 11881 | self.build_enforcing_required_and_enum_traits()
|
7973 11882 | }
|
11883 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7974 11884 | fn build_enforcing_required_and_enum_traits(
|
7975 11885 | self,
|
7976 11886 | ) -> crate::output::DocumentTypeAsPayloadOutput {
|
11887 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
7977 11888 | crate::output::DocumentTypeAsPayloadOutput {
|
11889 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
7978 11890 | document_value: self.document_value,
|
11891 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
7979 11892 | }
|
11893 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
7980 11894 | }
|
11895 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7981 11896 | }
|
11897 + |
|
11898 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
7982 11899 | }
|
7983 - | /// See [`DocumentTypeOutput`](crate::output::DocumentTypeOutput).
|
11900 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`DocumentTypeOutput`](crate::output::DocumentTypeOutput).
|
7984 11901 | pub mod document_type_output {
|
7985 11902 |
|
11903 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
7986 11904 | impl ::std::convert::From<Builder> for crate::output::DocumentTypeOutput {
|
7987 11905 | fn from(builder: Builder) -> Self {
|
7988 11906 | builder.build()
|
7989 11907 | }
|
7990 11908 | }
|
7991 - | /// A builder for [`DocumentTypeOutput`](crate::output::DocumentTypeOutput).
|
11909 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`DocumentTypeOutput`](crate::output::DocumentTypeOutput).
|
11910 + | /* RustType.kt:516 */
|
7992 11911 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
11912 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
7993 11913 | pub struct Builder {
|
11914 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
7994 11915 | pub(crate) string_value: ::std::option::Option<::std::string::String>,
|
11916 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
7995 11917 | pub(crate) document_value:
|
7996 11918 | ::std::option::Option<::aws_smithy_http_server_python::types::Document>,
|
11919 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
7997 11920 | }
|
11921 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
7998 11922 | impl Builder {
|
11923 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
7999 11924 | #[allow(missing_docs)] // documentation missing in model
|
11925 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8000 11926 | pub fn string_value(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
|
8001 - | self.string_value = input;
|
11927 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
11928 + | self.string_value =
|
11929 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
11930 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8002 11931 | self
|
11932 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8003 11933 | }
|
11934 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8004 11935 | #[allow(missing_docs)] // documentation missing in model
|
11936 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8005 11937 | pub fn document_value(
|
8006 11938 | mut self,
|
8007 11939 | input: ::std::option::Option<::aws_smithy_http_server_python::types::Document>,
|
8008 11940 | ) -> Self {
|
8009 - | self.document_value = input;
|
11941 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
11942 + | self.document_value =
|
11943 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
11944 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8010 11945 | self
|
11946 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8011 11947 | }
|
8012 - | /// Consumes the builder and constructs a [`DocumentTypeOutput`](crate::output::DocumentTypeOutput).
|
11948 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`DocumentTypeOutput`](crate::output::DocumentTypeOutput).
|
11949 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
8013 11950 | pub fn build(self) -> crate::output::DocumentTypeOutput {
|
8014 11951 | self.build_enforcing_required_and_enum_traits()
|
8015 11952 | }
|
11953 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8016 11954 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::DocumentTypeOutput {
|
11955 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8017 11956 | crate::output::DocumentTypeOutput {
|
11957 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8018 11958 | string_value: self.string_value,
|
11959 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8019 11960 | document_value: self.document_value,
|
11961 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8020 11962 | }
|
11963 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8021 11964 | }
|
11965 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8022 11966 | }
|
11967 + |
|
11968 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
8023 11969 | }
|
8024 - | /// See [`JsonBlobsOutput`](crate::output::JsonBlobsOutput).
|
11970 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`JsonBlobsOutput`](crate::output::JsonBlobsOutput).
|
8025 11971 | pub mod json_blobs_output {
|
8026 11972 |
|
11973 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
8027 11974 | impl ::std::convert::From<Builder> for crate::output::JsonBlobsOutput {
|
8028 11975 | fn from(builder: Builder) -> Self {
|
8029 11976 | builder.build()
|
8030 11977 | }
|
8031 11978 | }
|
8032 - | /// A builder for [`JsonBlobsOutput`](crate::output::JsonBlobsOutput).
|
11979 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`JsonBlobsOutput`](crate::output::JsonBlobsOutput).
|
11980 + | /* RustType.kt:516 */
|
8033 11981 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
11982 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8034 11983 | pub struct Builder {
|
11984 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8035 11985 | pub(crate) data: ::std::option::Option<::aws_smithy_http_server_python::types::Blob>,
|
11986 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8036 11987 | }
|
11988 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8037 11989 | impl Builder {
|
11990 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8038 11991 | #[allow(missing_docs)] // documentation missing in model
|
11992 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8039 11993 | pub fn data(
|
8040 11994 | mut self,
|
8041 11995 | input: ::std::option::Option<::aws_smithy_http_server_python::types::Blob>,
|
8042 11996 | ) -> Self {
|
8043 - | self.data = input;
|
11997 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
11998 + | self.data =
|
11999 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12000 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8044 12001 | self
|
12002 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8045 12003 | }
|
8046 - | /// Consumes the builder and constructs a [`JsonBlobsOutput`](crate::output::JsonBlobsOutput).
|
12004 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`JsonBlobsOutput`](crate::output::JsonBlobsOutput).
|
12005 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
8047 12006 | pub fn build(self) -> crate::output::JsonBlobsOutput {
|
8048 12007 | self.build_enforcing_required_and_enum_traits()
|
8049 12008 | }
|
12009 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8050 12010 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::JsonBlobsOutput {
|
8051 - | crate::output::JsonBlobsOutput { data: self.data }
|
12011 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
12012 + | crate::output::JsonBlobsOutput {
|
12013 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
12014 + | data: self.data,
|
12015 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8052 12016 | }
|
12017 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8053 12018 | }
|
12019 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
12020 + | }
|
12021 + |
|
12022 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
8054 12023 | }
|
8055 - | /// See [`SparseJsonMapsOutput`](crate::output::SparseJsonMapsOutput).
|
12024 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`SparseJsonMapsOutput`](crate::output::SparseJsonMapsOutput).
|
8056 12025 | pub mod sparse_json_maps_output {
|
8057 12026 |
|
12027 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
8058 12028 | impl ::std::convert::From<Builder> for crate::output::SparseJsonMapsOutput {
|
8059 12029 | fn from(builder: Builder) -> Self {
|
8060 12030 | builder.build()
|
8061 12031 | }
|
8062 12032 | }
|
8063 - | /// A builder for [`SparseJsonMapsOutput`](crate::output::SparseJsonMapsOutput).
|
12033 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`SparseJsonMapsOutput`](crate::output::SparseJsonMapsOutput).
|
12034 + | /* RustType.kt:516 */
|
8064 12035 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
12036 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8065 12037 | pub struct Builder {
|
12038 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8066 12039 | pub(crate) sparse_struct_map: ::std::option::Option<
|
8067 12040 | ::std::collections::HashMap<
|
8068 12041 | ::std::string::String,
|
8069 12042 | ::std::option::Option<crate::model::GreetingStruct>,
|
8070 12043 | >,
|
8071 12044 | >,
|
12045 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8072 12046 | pub(crate) sparse_number_map: ::std::option::Option<
|
8073 12047 | ::std::collections::HashMap<::std::string::String, ::std::option::Option<i32>>,
|
8074 12048 | >,
|
12049 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8075 12050 | pub(crate) sparse_boolean_map: ::std::option::Option<
|
8076 12051 | ::std::collections::HashMap<::std::string::String, ::std::option::Option<bool>>,
|
8077 12052 | >,
|
12053 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8078 12054 | pub(crate) sparse_string_map: ::std::option::Option<
|
8079 12055 | ::std::collections::HashMap<
|
8080 12056 | ::std::string::String,
|
8081 12057 | ::std::option::Option<::std::string::String>,
|
8082 12058 | >,
|
8083 12059 | >,
|
12060 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8084 12061 | pub(crate) sparse_set_map: ::std::option::Option<
|
8085 12062 | ::std::collections::HashMap<
|
8086 12063 | ::std::string::String,
|
8087 12064 | ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
8088 12065 | >,
|
8089 12066 | >,
|
12067 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8090 12068 | }
|
12069 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8091 12070 | impl Builder {
|
12071 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8092 12072 | #[allow(missing_docs)] // documentation missing in model
|
12073 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8093 12074 | pub fn sparse_struct_map(
|
8094 12075 | mut self,
|
8095 12076 | input: ::std::option::Option<
|
8096 12077 | ::std::collections::HashMap<
|
8097 12078 | ::std::string::String,
|
8098 12079 | ::std::option::Option<crate::model::GreetingStruct>,
|
8099 12080 | >,
|
8100 12081 | >,
|
8101 12082 | ) -> Self {
|
8102 - | self.sparse_struct_map = input;
|
12083 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12084 + | self.sparse_struct_map =
|
12085 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12086 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8103 12087 | self
|
12088 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8104 12089 | }
|
12090 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8105 12091 | #[allow(missing_docs)] // documentation missing in model
|
12092 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8106 12093 | pub fn sparse_number_map(
|
8107 12094 | mut self,
|
8108 12095 | input: ::std::option::Option<
|
8109 12096 | ::std::collections::HashMap<::std::string::String, ::std::option::Option<i32>>,
|
8110 12097 | >,
|
8111 12098 | ) -> Self {
|
8112 - | self.sparse_number_map = input;
|
12099 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12100 + | self.sparse_number_map =
|
12101 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12102 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8113 12103 | self
|
12104 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8114 12105 | }
|
12106 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8115 12107 | #[allow(missing_docs)] // documentation missing in model
|
12108 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8116 12109 | pub fn sparse_boolean_map(
|
8117 12110 | mut self,
|
8118 12111 | input: ::std::option::Option<
|
8119 12112 | ::std::collections::HashMap<::std::string::String, ::std::option::Option<bool>>,
|
8120 12113 | >,
|
8121 12114 | ) -> Self {
|
8122 - | self.sparse_boolean_map = input;
|
12115 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12116 + | self.sparse_boolean_map =
|
12117 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12118 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8123 12119 | self
|
12120 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8124 12121 | }
|
12122 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8125 12123 | #[allow(missing_docs)] // documentation missing in model
|
12124 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8126 12125 | pub fn sparse_string_map(
|
8127 12126 | mut self,
|
8128 12127 | input: ::std::option::Option<
|
8129 12128 | ::std::collections::HashMap<
|
8130 12129 | ::std::string::String,
|
8131 12130 | ::std::option::Option<::std::string::String>,
|
8132 12131 | >,
|
8133 12132 | >,
|
8134 12133 | ) -> Self {
|
8135 - | self.sparse_string_map = input;
|
12134 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12135 + | self.sparse_string_map =
|
12136 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12137 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8136 12138 | self
|
12139 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8137 12140 | }
|
12141 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8138 12142 | #[allow(missing_docs)] // documentation missing in model
|
12143 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8139 12144 | pub fn sparse_set_map(
|
8140 12145 | mut self,
|
8141 12146 | input: ::std::option::Option<
|
8142 12147 | ::std::collections::HashMap<
|
8143 12148 | ::std::string::String,
|
8144 12149 | ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
8145 12150 | >,
|
8146 12151 | >,
|
8147 12152 | ) -> Self {
|
8148 - | self.sparse_set_map = input;
|
12153 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12154 + | self.sparse_set_map =
|
12155 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12156 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8149 12157 | self
|
12158 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8150 12159 | }
|
8151 - | /// Consumes the builder and constructs a [`SparseJsonMapsOutput`](crate::output::SparseJsonMapsOutput).
|
12160 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`SparseJsonMapsOutput`](crate::output::SparseJsonMapsOutput).
|
12161 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
8152 12162 | pub fn build(self) -> crate::output::SparseJsonMapsOutput {
|
8153 12163 | self.build_enforcing_required_and_enum_traits()
|
8154 12164 | }
|
12165 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8155 12166 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::SparseJsonMapsOutput {
|
12167 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8156 12168 | crate::output::SparseJsonMapsOutput {
|
12169 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8157 12170 | sparse_struct_map: self.sparse_struct_map,
|
12171 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8158 12172 | sparse_number_map: self.sparse_number_map,
|
12173 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8159 12174 | sparse_boolean_map: self.sparse_boolean_map,
|
12175 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8160 12176 | sparse_string_map: self.sparse_string_map,
|
12177 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8161 12178 | sparse_set_map: self.sparse_set_map,
|
12179 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8162 12180 | }
|
12181 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8163 12182 | }
|
12183 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8164 12184 | }
|
12185 + |
|
12186 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
8165 12187 | }
|
8166 - | /// See [`JsonMapsOutput`](crate::output::JsonMapsOutput).
|
12188 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`JsonMapsOutput`](crate::output::JsonMapsOutput).
|
8167 12189 | pub mod json_maps_output {
|
8168 12190 |
|
12191 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
8169 12192 | impl ::std::convert::From<Builder> for crate::output::JsonMapsOutput {
|
8170 12193 | fn from(builder: Builder) -> Self {
|
8171 12194 | builder.build()
|
8172 12195 | }
|
8173 12196 | }
|
8174 - | /// A builder for [`JsonMapsOutput`](crate::output::JsonMapsOutput).
|
12197 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`JsonMapsOutput`](crate::output::JsonMapsOutput).
|
12198 + | /* RustType.kt:516 */
|
8175 12199 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
12200 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8176 12201 | pub struct Builder {
|
12202 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8177 12203 | pub(crate) dense_struct_map: ::std::option::Option<
|
8178 12204 | ::std::collections::HashMap<::std::string::String, crate::model::GreetingStruct>,
|
8179 12205 | >,
|
12206 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8180 12207 | pub(crate) dense_number_map:
|
8181 12208 | ::std::option::Option<::std::collections::HashMap<::std::string::String, i32>>,
|
12209 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8182 12210 | pub(crate) dense_boolean_map:
|
8183 12211 | ::std::option::Option<::std::collections::HashMap<::std::string::String, bool>>,
|
12212 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8184 12213 | pub(crate) dense_string_map: ::std::option::Option<
|
8185 12214 | ::std::collections::HashMap<::std::string::String, ::std::string::String>,
|
8186 12215 | >,
|
12216 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8187 12217 | pub(crate) dense_set_map: ::std::option::Option<
|
8188 12218 | ::std::collections::HashMap<
|
8189 12219 | ::std::string::String,
|
8190 12220 | ::std::vec::Vec<::std::string::String>,
|
8191 12221 | >,
|
8192 12222 | >,
|
12223 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8193 12224 | }
|
12225 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8194 12226 | impl Builder {
|
12227 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8195 12228 | #[allow(missing_docs)] // documentation missing in model
|
12229 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8196 12230 | pub fn dense_struct_map(
|
8197 12231 | mut self,
|
8198 12232 | input: ::std::option::Option<
|
8199 12233 | ::std::collections::HashMap<::std::string::String, crate::model::GreetingStruct>,
|
8200 12234 | >,
|
8201 12235 | ) -> Self {
|
8202 - | self.dense_struct_map = input;
|
12236 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12237 + | self.dense_struct_map =
|
12238 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12239 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8203 12240 | self
|
12241 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8204 12242 | }
|
12243 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8205 12244 | #[allow(missing_docs)] // documentation missing in model
|
12245 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8206 12246 | pub fn dense_number_map(
|
8207 12247 | mut self,
|
8208 12248 | input: ::std::option::Option<::std::collections::HashMap<::std::string::String, i32>>,
|
8209 12249 | ) -> Self {
|
8210 - | self.dense_number_map = input;
|
12250 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12251 + | self.dense_number_map =
|
12252 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12253 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8211 12254 | self
|
12255 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8212 12256 | }
|
12257 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8213 12258 | #[allow(missing_docs)] // documentation missing in model
|
12259 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8214 12260 | pub fn dense_boolean_map(
|
8215 12261 | mut self,
|
8216 12262 | input: ::std::option::Option<::std::collections::HashMap<::std::string::String, bool>>,
|
8217 12263 | ) -> Self {
|
8218 - | self.dense_boolean_map = input;
|
12264 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12265 + | self.dense_boolean_map =
|
12266 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12267 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8219 12268 | self
|
12269 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8220 12270 | }
|
12271 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8221 12272 | #[allow(missing_docs)] // documentation missing in model
|
12273 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8222 12274 | pub fn dense_string_map(
|
8223 12275 | mut self,
|
8224 12276 | input: ::std::option::Option<
|
8225 12277 | ::std::collections::HashMap<::std::string::String, ::std::string::String>,
|
8226 12278 | >,
|
8227 12279 | ) -> Self {
|
8228 - | self.dense_string_map = input;
|
12280 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12281 + | self.dense_string_map =
|
12282 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12283 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8229 12284 | self
|
12285 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8230 12286 | }
|
12287 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8231 12288 | #[allow(missing_docs)] // documentation missing in model
|
12289 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8232 12290 | pub fn dense_set_map(
|
8233 12291 | mut self,
|
8234 12292 | input: ::std::option::Option<
|
8235 12293 | ::std::collections::HashMap<
|
8236 12294 | ::std::string::String,
|
8237 12295 | ::std::vec::Vec<::std::string::String>,
|
8238 12296 | >,
|
8239 12297 | >,
|
8240 12298 | ) -> Self {
|
8241 - | self.dense_set_map = input;
|
12299 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12300 + | self.dense_set_map =
|
12301 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12302 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8242 12303 | self
|
12304 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8243 12305 | }
|
8244 - | /// Consumes the builder and constructs a [`JsonMapsOutput`](crate::output::JsonMapsOutput).
|
12306 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`JsonMapsOutput`](crate::output::JsonMapsOutput).
|
12307 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
8245 12308 | pub fn build(self) -> crate::output::JsonMapsOutput {
|
8246 12309 | self.build_enforcing_required_and_enum_traits()
|
8247 12310 | }
|
12311 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8248 12312 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::JsonMapsOutput {
|
12313 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8249 12314 | crate::output::JsonMapsOutput {
|
12315 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8250 12316 | dense_struct_map: self.dense_struct_map,
|
12317 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8251 12318 | dense_number_map: self.dense_number_map,
|
12319 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8252 12320 | dense_boolean_map: self.dense_boolean_map,
|
12321 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8253 12322 | dense_string_map: self.dense_string_map,
|
12323 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8254 12324 | dense_set_map: self.dense_set_map,
|
12325 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8255 12326 | }
|
12327 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8256 12328 | }
|
12329 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8257 12330 | }
|
12331 + |
|
12332 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
8258 12333 | }
|
8259 - | /// See [`SparseJsonListsOutput`](crate::output::SparseJsonListsOutput).
|
12334 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`SparseJsonListsOutput`](crate::output::SparseJsonListsOutput).
|
8260 12335 | pub mod sparse_json_lists_output {
|
8261 12336 |
|
12337 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
8262 12338 | impl ::std::convert::From<Builder> for crate::output::SparseJsonListsOutput {
|
8263 12339 | fn from(builder: Builder) -> Self {
|
8264 12340 | builder.build()
|
8265 12341 | }
|
8266 12342 | }
|
8267 - | /// A builder for [`SparseJsonListsOutput`](crate::output::SparseJsonListsOutput).
|
12343 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`SparseJsonListsOutput`](crate::output::SparseJsonListsOutput).
|
12344 + | /* RustType.kt:516 */
|
8268 12345 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
12346 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8269 12347 | pub struct Builder {
|
12348 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8270 12349 | pub(crate) sparse_string_list:
|
8271 12350 | ::std::option::Option<::std::vec::Vec<::std::option::Option<::std::string::String>>>,
|
12351 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8272 12352 | pub(crate) sparse_short_list:
|
8273 12353 | ::std::option::Option<::std::vec::Vec<::std::option::Option<i16>>>,
|
12354 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8274 12355 | }
|
12356 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8275 12357 | impl Builder {
|
12358 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8276 12359 | #[allow(missing_docs)] // documentation missing in model
|
12360 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8277 12361 | pub fn sparse_string_list(
|
8278 12362 | mut self,
|
8279 12363 | input: ::std::option::Option<
|
8280 12364 | ::std::vec::Vec<::std::option::Option<::std::string::String>>,
|
8281 12365 | >,
|
8282 12366 | ) -> Self {
|
8283 - | self.sparse_string_list = input;
|
12367 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12368 + | self.sparse_string_list =
|
12369 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12370 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8284 12371 | self
|
12372 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8285 12373 | }
|
12374 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8286 12375 | #[allow(missing_docs)] // documentation missing in model
|
12376 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8287 12377 | pub fn sparse_short_list(
|
8288 12378 | mut self,
|
8289 12379 | input: ::std::option::Option<::std::vec::Vec<::std::option::Option<i16>>>,
|
8290 12380 | ) -> Self {
|
8291 - | self.sparse_short_list = input;
|
12381 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12382 + | self.sparse_short_list =
|
12383 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12384 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8292 12385 | self
|
12386 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8293 12387 | }
|
8294 - | /// Consumes the builder and constructs a [`SparseJsonListsOutput`](crate::output::SparseJsonListsOutput).
|
12388 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`SparseJsonListsOutput`](crate::output::SparseJsonListsOutput).
|
12389 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
8295 12390 | pub fn build(self) -> crate::output::SparseJsonListsOutput {
|
8296 12391 | self.build_enforcing_required_and_enum_traits()
|
8297 12392 | }
|
12393 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8298 12394 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::SparseJsonListsOutput {
|
12395 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8299 12396 | crate::output::SparseJsonListsOutput {
|
12397 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8300 12398 | sparse_string_list: self.sparse_string_list,
|
12399 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8301 12400 | sparse_short_list: self.sparse_short_list,
|
12401 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8302 12402 | }
|
12403 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8303 12404 | }
|
12405 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8304 12406 | }
|
12407 + |
|
12408 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
8305 12409 | }
|
8306 - | /// See [`JsonListsOutput`](crate::output::JsonListsOutput).
|
12410 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`JsonListsOutput`](crate::output::JsonListsOutput).
|
8307 12411 | pub mod json_lists_output {
|
8308 12412 |
|
12413 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
8309 12414 | impl ::std::convert::From<Builder> for crate::output::JsonListsOutput {
|
8310 12415 | fn from(builder: Builder) -> Self {
|
8311 12416 | builder.build()
|
8312 12417 | }
|
8313 12418 | }
|
8314 - | /// A builder for [`JsonListsOutput`](crate::output::JsonListsOutput).
|
12419 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`JsonListsOutput`](crate::output::JsonListsOutput).
|
12420 + | /* RustType.kt:516 */
|
8315 12421 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
12422 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8316 12423 | pub struct Builder {
|
12424 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8317 12425 | pub(crate) string_list: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
12426 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8318 12427 | pub(crate) string_set: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
12428 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8319 12429 | pub(crate) integer_list: ::std::option::Option<::std::vec::Vec<i32>>,
|
12430 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8320 12431 | pub(crate) boolean_list: ::std::option::Option<::std::vec::Vec<bool>>,
|
12432 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8321 12433 | pub(crate) timestamp_list: ::std::option::Option<
|
8322 12434 | ::std::vec::Vec<::aws_smithy_http_server_python::types::DateTime>,
|
8323 12435 | >,
|
12436 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8324 12437 | pub(crate) enum_list: ::std::option::Option<::std::vec::Vec<crate::model::FooEnum>>,
|
12438 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8325 12439 | pub(crate) int_enum_list: ::std::option::Option<::std::vec::Vec<i32>>,
|
12440 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8326 12441 | pub(crate) nested_string_list:
|
8327 12442 | ::std::option::Option<::std::vec::Vec<::std::vec::Vec<::std::string::String>>>,
|
12443 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8328 12444 | pub(crate) structure_list:
|
8329 12445 | ::std::option::Option<::std::vec::Vec<crate::model::StructureListMember>>,
|
12446 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8330 12447 | }
|
12448 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8331 12449 | impl Builder {
|
12450 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8332 12451 | #[allow(missing_docs)] // documentation missing in model
|
12452 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8333 12453 | pub fn string_list(
|
8334 12454 | mut self,
|
8335 12455 | input: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
8336 12456 | ) -> Self {
|
8337 - | self.string_list = input;
|
12457 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12458 + | self.string_list =
|
12459 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12460 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8338 12461 | self
|
12462 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8339 12463 | }
|
12464 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8340 12465 | #[allow(missing_docs)] // documentation missing in model
|
12466 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8341 12467 | pub fn string_set(
|
8342 12468 | mut self,
|
8343 12469 | input: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
8344 12470 | ) -> Self {
|
8345 - | self.string_set = input;
|
12471 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12472 + | self.string_set =
|
12473 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12474 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8346 12475 | self
|
12476 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8347 12477 | }
|
12478 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8348 12479 | #[allow(missing_docs)] // documentation missing in model
|
12480 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8349 12481 | pub fn integer_list(mut self, input: ::std::option::Option<::std::vec::Vec<i32>>) -> Self {
|
8350 - | self.integer_list = input;
|
12482 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12483 + | self.integer_list =
|
12484 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12485 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8351 12486 | self
|
12487 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8352 12488 | }
|
12489 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8353 12490 | #[allow(missing_docs)] // documentation missing in model
|
12491 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8354 12492 | pub fn boolean_list(mut self, input: ::std::option::Option<::std::vec::Vec<bool>>) -> Self {
|
8355 - | self.boolean_list = input;
|
12493 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12494 + | self.boolean_list =
|
12495 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12496 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8356 12497 | self
|
12498 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8357 12499 | }
|
12500 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8358 12501 | #[allow(missing_docs)] // documentation missing in model
|
12502 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8359 12503 | pub fn timestamp_list(
|
8360 12504 | mut self,
|
8361 12505 | input: ::std::option::Option<
|
8362 12506 | ::std::vec::Vec<::aws_smithy_http_server_python::types::DateTime>,
|
8363 12507 | >,
|
8364 12508 | ) -> Self {
|
8365 - | self.timestamp_list = input;
|
12509 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12510 + | self.timestamp_list =
|
12511 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12512 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8366 12513 | self
|
12514 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8367 12515 | }
|
12516 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8368 12517 | #[allow(missing_docs)] // documentation missing in model
|
12518 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8369 12519 | pub fn enum_list(
|
8370 12520 | mut self,
|
8371 12521 | input: ::std::option::Option<::std::vec::Vec<crate::model::FooEnum>>,
|
8372 12522 | ) -> Self {
|
8373 - | self.enum_list = input;
|
12523 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12524 + | self.enum_list =
|
12525 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12526 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8374 12527 | self
|
12528 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8375 12529 | }
|
12530 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8376 12531 | #[allow(missing_docs)] // documentation missing in model
|
12532 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8377 12533 | pub fn int_enum_list(mut self, input: ::std::option::Option<::std::vec::Vec<i32>>) -> Self {
|
8378 - | self.int_enum_list = input;
|
12534 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12535 + | self.int_enum_list =
|
12536 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12537 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8379 12538 | self
|
12539 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8380 12540 | }
|
8381 - | /// A list of lists of strings.
|
12541 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */A list of lists of strings.
|
12542 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8382 12543 | pub fn nested_string_list(
|
8383 12544 | mut self,
|
8384 12545 | input: ::std::option::Option<::std::vec::Vec<::std::vec::Vec<::std::string::String>>>,
|
8385 12546 | ) -> Self {
|
8386 - | self.nested_string_list = input;
|
12547 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12548 + | self.nested_string_list =
|
12549 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12550 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8387 12551 | self
|
12552 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8388 12553 | }
|
12554 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8389 12555 | #[allow(missing_docs)] // documentation missing in model
|
12556 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8390 12557 | pub fn structure_list(
|
8391 12558 | mut self,
|
8392 12559 | input: ::std::option::Option<::std::vec::Vec<crate::model::StructureListMember>>,
|
8393 12560 | ) -> Self {
|
8394 - | self.structure_list = input;
|
12561 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12562 + | self.structure_list =
|
12563 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12564 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8395 12565 | self
|
12566 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8396 12567 | }
|
8397 - | /// Consumes the builder and constructs a [`JsonListsOutput`](crate::output::JsonListsOutput).
|
12568 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`JsonListsOutput`](crate::output::JsonListsOutput).
|
12569 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
8398 12570 | pub fn build(self) -> crate::output::JsonListsOutput {
|
8399 12571 | self.build_enforcing_required_and_enum_traits()
|
8400 12572 | }
|
12573 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8401 12574 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::JsonListsOutput {
|
12575 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8402 12576 | crate::output::JsonListsOutput {
|
12577 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8403 12578 | string_list: self.string_list,
|
12579 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8404 12580 | string_set: self.string_set,
|
12581 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8405 12582 | integer_list: self.integer_list,
|
12583 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8406 12584 | boolean_list: self.boolean_list,
|
12585 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8407 12586 | timestamp_list: self.timestamp_list,
|
12587 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8408 12588 | enum_list: self.enum_list,
|
12589 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8409 12590 | int_enum_list: self.int_enum_list,
|
12591 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8410 12592 | nested_string_list: self.nested_string_list,
|
12593 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8411 12594 | structure_list: self.structure_list,
|
12595 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8412 12596 | }
|
12597 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8413 12598 | }
|
12599 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8414 12600 | }
|
12601 + |
|
12602 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
8415 12603 | }
|
8416 - | /// See [`RecursiveShapesOutput`](crate::output::RecursiveShapesOutput).
|
12604 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`RecursiveShapesOutput`](crate::output::RecursiveShapesOutput).
|
8417 12605 | pub mod recursive_shapes_output {
|
8418 12606 |
|
12607 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
8419 12608 | impl ::std::convert::From<Builder> for crate::output::RecursiveShapesOutput {
|
8420 12609 | fn from(builder: Builder) -> Self {
|
8421 12610 | builder.build()
|
8422 12611 | }
|
8423 12612 | }
|
8424 - | /// A builder for [`RecursiveShapesOutput`](crate::output::RecursiveShapesOutput).
|
12613 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`RecursiveShapesOutput`](crate::output::RecursiveShapesOutput).
|
12614 + | /* RustType.kt:516 */
|
8425 12615 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
12616 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8426 12617 | pub struct Builder {
|
12618 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8427 12619 | pub(crate) nested: ::std::option::Option<crate::model::RecursiveShapesInputOutputNested1>,
|
12620 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8428 12621 | }
|
12622 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8429 12623 | impl Builder {
|
12624 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8430 12625 | #[allow(missing_docs)] // documentation missing in model
|
12626 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8431 12627 | pub fn nested(
|
8432 12628 | mut self,
|
8433 12629 | input: ::std::option::Option<crate::model::RecursiveShapesInputOutputNested1>,
|
8434 12630 | ) -> Self {
|
8435 - | self.nested = input;
|
12631 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12632 + | self.nested =
|
12633 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12634 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8436 12635 | self
|
12636 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8437 12637 | }
|
8438 - | /// Consumes the builder and constructs a [`RecursiveShapesOutput`](crate::output::RecursiveShapesOutput).
|
12638 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`RecursiveShapesOutput`](crate::output::RecursiveShapesOutput).
|
12639 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
8439 12640 | pub fn build(self) -> crate::output::RecursiveShapesOutput {
|
8440 12641 | self.build_enforcing_required_and_enum_traits()
|
8441 12642 | }
|
12643 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8442 12644 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::RecursiveShapesOutput {
|
12645 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8443 12646 | crate::output::RecursiveShapesOutput {
|
12647 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8444 12648 | nested: self.nested,
|
12649 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8445 12650 | }
|
12651 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8446 12652 | }
|
12653 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8447 12654 | }
|
12655 + |
|
12656 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
8448 12657 | }
|
8449 - | /// See [`JsonIntEnumsOutput`](crate::output::JsonIntEnumsOutput).
|
12658 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`JsonIntEnumsOutput`](crate::output::JsonIntEnumsOutput).
|
8450 12659 | pub mod json_int_enums_output {
|
8451 12660 |
|
12661 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
8452 12662 | impl ::std::convert::From<Builder> for crate::output::JsonIntEnumsOutput {
|
8453 12663 | fn from(builder: Builder) -> Self {
|
8454 12664 | builder.build()
|
8455 12665 | }
|
8456 12666 | }
|
8457 - | /// A builder for [`JsonIntEnumsOutput`](crate::output::JsonIntEnumsOutput).
|
12667 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`JsonIntEnumsOutput`](crate::output::JsonIntEnumsOutput).
|
12668 + | /* RustType.kt:516 */
|
8458 12669 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
12670 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8459 12671 | pub struct Builder {
|
12672 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8460 12673 | pub(crate) integer_enum1: ::std::option::Option<i32>,
|
12674 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8461 12675 | pub(crate) integer_enum2: ::std::option::Option<i32>,
|
12676 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8462 12677 | pub(crate) integer_enum3: ::std::option::Option<i32>,
|
12678 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8463 12679 | pub(crate) integer_enum_list: ::std::option::Option<::std::vec::Vec<i32>>,
|
12680 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8464 12681 | pub(crate) integer_enum_set: ::std::option::Option<::std::vec::Vec<i32>>,
|
12682 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8465 12683 | pub(crate) integer_enum_map:
|
8466 12684 | ::std::option::Option<::std::collections::HashMap<::std::string::String, i32>>,
|
12685 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8467 12686 | }
|
12687 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8468 12688 | impl Builder {
|
12689 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8469 12690 | #[allow(missing_docs)] // documentation missing in model
|
12691 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8470 12692 | pub fn integer_enum1(mut self, input: ::std::option::Option<i32>) -> Self {
|
8471 - | self.integer_enum1 = input;
|
12693 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12694 + | self.integer_enum1 =
|
12695 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12696 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8472 12697 | self
|
12698 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8473 12699 | }
|
12700 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8474 12701 | #[allow(missing_docs)] // documentation missing in model
|
12702 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8475 12703 | pub fn integer_enum2(mut self, input: ::std::option::Option<i32>) -> Self {
|
8476 - | self.integer_enum2 = input;
|
12704 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12705 + | self.integer_enum2 =
|
12706 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12707 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8477 12708 | self
|
12709 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8478 12710 | }
|
12711 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8479 12712 | #[allow(missing_docs)] // documentation missing in model
|
12713 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8480 12714 | pub fn integer_enum3(mut self, input: ::std::option::Option<i32>) -> Self {
|
8481 - | self.integer_enum3 = input;
|
12715 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12716 + | self.integer_enum3 =
|
12717 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12718 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8482 12719 | self
|
12720 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8483 12721 | }
|
12722 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8484 12723 | #[allow(missing_docs)] // documentation missing in model
|
12724 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8485 12725 | pub fn integer_enum_list(
|
8486 12726 | mut self,
|
8487 12727 | input: ::std::option::Option<::std::vec::Vec<i32>>,
|
8488 12728 | ) -> Self {
|
8489 - | self.integer_enum_list = input;
|
12729 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12730 + | self.integer_enum_list =
|
12731 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12732 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8490 12733 | self
|
12734 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8491 12735 | }
|
12736 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8492 12737 | #[allow(missing_docs)] // documentation missing in model
|
12738 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8493 12739 | pub fn integer_enum_set(
|
8494 12740 | mut self,
|
8495 12741 | input: ::std::option::Option<::std::vec::Vec<i32>>,
|
8496 12742 | ) -> Self {
|
8497 - | self.integer_enum_set = input;
|
12743 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12744 + | self.integer_enum_set =
|
12745 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12746 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8498 12747 | self
|
12748 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8499 12749 | }
|
12750 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8500 12751 | #[allow(missing_docs)] // documentation missing in model
|
12752 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8501 12753 | pub fn integer_enum_map(
|
8502 12754 | mut self,
|
8503 12755 | input: ::std::option::Option<::std::collections::HashMap<::std::string::String, i32>>,
|
8504 12756 | ) -> Self {
|
8505 - | self.integer_enum_map = input;
|
12757 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12758 + | self.integer_enum_map =
|
12759 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12760 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8506 12761 | self
|
12762 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8507 12763 | }
|
8508 - | /// Consumes the builder and constructs a [`JsonIntEnumsOutput`](crate::output::JsonIntEnumsOutput).
|
12764 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`JsonIntEnumsOutput`](crate::output::JsonIntEnumsOutput).
|
12765 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
8509 12766 | pub fn build(self) -> crate::output::JsonIntEnumsOutput {
|
8510 12767 | self.build_enforcing_required_and_enum_traits()
|
8511 12768 | }
|
12769 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8512 12770 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::JsonIntEnumsOutput {
|
12771 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8513 12772 | crate::output::JsonIntEnumsOutput {
|
12773 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8514 12774 | integer_enum1: self.integer_enum1,
|
12775 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8515 12776 | integer_enum2: self.integer_enum2,
|
12777 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8516 12778 | integer_enum3: self.integer_enum3,
|
12779 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8517 12780 | integer_enum_list: self.integer_enum_list,
|
12781 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8518 12782 | integer_enum_set: self.integer_enum_set,
|
12783 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8519 12784 | integer_enum_map: self.integer_enum_map,
|
12785 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8520 12786 | }
|
12787 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8521 12788 | }
|
12789 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8522 12790 | }
|
12791 + |
|
12792 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
8523 12793 | }
|
8524 - | /// See [`JsonEnumsOutput`](crate::output::JsonEnumsOutput).
|
12794 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`JsonEnumsOutput`](crate::output::JsonEnumsOutput).
|
8525 12795 | pub mod json_enums_output {
|
8526 12796 |
|
12797 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
8527 12798 | impl ::std::convert::From<Builder> for crate::output::JsonEnumsOutput {
|
8528 12799 | fn from(builder: Builder) -> Self {
|
8529 12800 | builder.build()
|
8530 12801 | }
|
8531 12802 | }
|
8532 - | /// A builder for [`JsonEnumsOutput`](crate::output::JsonEnumsOutput).
|
12803 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`JsonEnumsOutput`](crate::output::JsonEnumsOutput).
|
12804 + | /* RustType.kt:516 */
|
8533 12805 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
12806 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8534 12807 | pub struct Builder {
|
12808 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8535 12809 | pub(crate) foo_enum1: ::std::option::Option<crate::model::FooEnum>,
|
12810 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8536 12811 | pub(crate) foo_enum2: ::std::option::Option<crate::model::FooEnum>,
|
12812 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8537 12813 | pub(crate) foo_enum3: ::std::option::Option<crate::model::FooEnum>,
|
12814 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8538 12815 | pub(crate) foo_enum_list: ::std::option::Option<::std::vec::Vec<crate::model::FooEnum>>,
|
12816 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8539 12817 | pub(crate) foo_enum_set: ::std::option::Option<::std::vec::Vec<crate::model::FooEnum>>,
|
12818 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8540 12819 | pub(crate) foo_enum_map: ::std::option::Option<
|
8541 12820 | ::std::collections::HashMap<::std::string::String, crate::model::FooEnum>,
|
8542 12821 | >,
|
12822 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8543 12823 | }
|
12824 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8544 12825 | impl Builder {
|
12826 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8545 12827 | #[allow(missing_docs)] // documentation missing in model
|
12828 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8546 12829 | pub fn foo_enum1(mut self, input: ::std::option::Option<crate::model::FooEnum>) -> Self {
|
8547 - | self.foo_enum1 = input;
|
12830 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12831 + | self.foo_enum1 =
|
12832 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12833 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8548 12834 | self
|
12835 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8549 12836 | }
|
12837 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8550 12838 | #[allow(missing_docs)] // documentation missing in model
|
12839 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8551 12840 | pub fn foo_enum2(mut self, input: ::std::option::Option<crate::model::FooEnum>) -> Self {
|
8552 - | self.foo_enum2 = input;
|
12841 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12842 + | self.foo_enum2 =
|
12843 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12844 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8553 12845 | self
|
12846 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8554 12847 | }
|
12848 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8555 12849 | #[allow(missing_docs)] // documentation missing in model
|
12850 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8556 12851 | pub fn foo_enum3(mut self, input: ::std::option::Option<crate::model::FooEnum>) -> Self {
|
8557 - | self.foo_enum3 = input;
|
12852 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12853 + | self.foo_enum3 =
|
12854 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12855 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8558 12856 | self
|
12857 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8559 12858 | }
|
12859 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8560 12860 | #[allow(missing_docs)] // documentation missing in model
|
12861 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8561 12862 | pub fn foo_enum_list(
|
8562 12863 | mut self,
|
8563 12864 | input: ::std::option::Option<::std::vec::Vec<crate::model::FooEnum>>,
|
8564 12865 | ) -> Self {
|
8565 - | self.foo_enum_list = input;
|
12866 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12867 + | self.foo_enum_list =
|
12868 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12869 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8566 12870 | self
|
12871 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8567 12872 | }
|
12873 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8568 12874 | #[allow(missing_docs)] // documentation missing in model
|
12875 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8569 12876 | pub fn foo_enum_set(
|
8570 12877 | mut self,
|
8571 12878 | input: ::std::option::Option<::std::vec::Vec<crate::model::FooEnum>>,
|
8572 12879 | ) -> Self {
|
8573 - | self.foo_enum_set = input;
|
12880 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12881 + | self.foo_enum_set =
|
12882 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12883 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8574 12884 | self
|
12885 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8575 12886 | }
|
12887 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8576 12888 | #[allow(missing_docs)] // documentation missing in model
|
12889 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8577 12890 | pub fn foo_enum_map(
|
8578 12891 | mut self,
|
8579 12892 | input: ::std::option::Option<
|
8580 12893 | ::std::collections::HashMap<::std::string::String, crate::model::FooEnum>,
|
8581 12894 | >,
|
8582 12895 | ) -> Self {
|
8583 - | self.foo_enum_map = input;
|
12896 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12897 + | self.foo_enum_map =
|
12898 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12899 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8584 12900 | self
|
12901 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8585 12902 | }
|
8586 - | /// Consumes the builder and constructs a [`JsonEnumsOutput`](crate::output::JsonEnumsOutput).
|
12903 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`JsonEnumsOutput`](crate::output::JsonEnumsOutput).
|
12904 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
8587 12905 | pub fn build(self) -> crate::output::JsonEnumsOutput {
|
8588 12906 | self.build_enforcing_required_and_enum_traits()
|
8589 12907 | }
|
12908 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8590 12909 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::JsonEnumsOutput {
|
12910 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8591 12911 | crate::output::JsonEnumsOutput {
|
12912 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8592 12913 | foo_enum1: self.foo_enum1,
|
12914 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8593 12915 | foo_enum2: self.foo_enum2,
|
12916 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8594 12917 | foo_enum3: self.foo_enum3,
|
12918 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8595 12919 | foo_enum_list: self.foo_enum_list,
|
12920 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8596 12921 | foo_enum_set: self.foo_enum_set,
|
12922 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8597 12923 | foo_enum_map: self.foo_enum_map,
|
12924 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8598 12925 | }
|
12926 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8599 12927 | }
|
12928 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8600 12929 | }
|
12930 + |
|
12931 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
8601 12932 | }
|
8602 - | /// See [`JsonTimestampsOutput`](crate::output::JsonTimestampsOutput).
|
12933 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`JsonTimestampsOutput`](crate::output::JsonTimestampsOutput).
|
8603 12934 | pub mod json_timestamps_output {
|
8604 12935 |
|
12936 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
8605 12937 | impl ::std::convert::From<Builder> for crate::output::JsonTimestampsOutput {
|
8606 12938 | fn from(builder: Builder) -> Self {
|
8607 12939 | builder.build()
|
8608 12940 | }
|
8609 12941 | }
|
8610 - | /// A builder for [`JsonTimestampsOutput`](crate::output::JsonTimestampsOutput).
|
12942 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`JsonTimestampsOutput`](crate::output::JsonTimestampsOutput).
|
12943 + | /* RustType.kt:516 */
|
8611 12944 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
12945 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8612 12946 | pub struct Builder {
|
12947 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8613 12948 | pub(crate) normal: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
12949 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8614 12950 | pub(crate) date_time:
|
8615 12951 | ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
12952 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8616 12953 | pub(crate) date_time_on_target:
|
8617 12954 | ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
12955 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8618 12956 | pub(crate) epoch_seconds:
|
8619 12957 | ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
12958 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8620 12959 | pub(crate) epoch_seconds_on_target:
|
8621 12960 | ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
12961 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8622 12962 | pub(crate) http_date:
|
8623 12963 | ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
12964 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8624 12965 | pub(crate) http_date_on_target:
|
8625 12966 | ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
12967 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8626 12968 | }
|
12969 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8627 12970 | impl Builder {
|
12971 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8628 12972 | #[allow(missing_docs)] // documentation missing in model
|
12973 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8629 12974 | pub fn normal(
|
8630 12975 | mut self,
|
8631 12976 | input: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
8632 12977 | ) -> Self {
|
8633 - | self.normal = input;
|
12978 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12979 + | self.normal =
|
12980 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12981 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8634 12982 | self
|
12983 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8635 12984 | }
|
12985 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8636 12986 | #[allow(missing_docs)] // documentation missing in model
|
12987 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8637 12988 | pub fn date_time(
|
8638 12989 | mut self,
|
8639 12990 | input: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
8640 12991 | ) -> Self {
|
8641 - | self.date_time = input;
|
12992 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
12993 + | self.date_time =
|
12994 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
12995 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8642 12996 | self
|
12997 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8643 12998 | }
|
12999 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8644 13000 | #[allow(missing_docs)] // documentation missing in model
|
13001 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8645 13002 | pub fn date_time_on_target(
|
8646 13003 | mut self,
|
8647 13004 | input: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
8648 13005 | ) -> Self {
|
8649 - | self.date_time_on_target = input;
|
13006 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13007 + | self.date_time_on_target =
|
13008 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13009 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8650 13010 | self
|
13011 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8651 13012 | }
|
13013 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8652 13014 | #[allow(missing_docs)] // documentation missing in model
|
13015 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8653 13016 | pub fn epoch_seconds(
|
8654 13017 | mut self,
|
8655 13018 | input: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
8656 13019 | ) -> Self {
|
8657 - | self.epoch_seconds = input;
|
13020 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13021 + | self.epoch_seconds =
|
13022 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13023 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8658 13024 | self
|
13025 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8659 13026 | }
|
13027 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8660 13028 | #[allow(missing_docs)] // documentation missing in model
|
13029 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8661 13030 | pub fn epoch_seconds_on_target(
|
8662 13031 | mut self,
|
8663 13032 | input: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
8664 13033 | ) -> Self {
|
8665 - | self.epoch_seconds_on_target = input;
|
13034 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13035 + | self.epoch_seconds_on_target =
|
13036 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13037 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8666 13038 | self
|
13039 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8667 13040 | }
|
13041 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8668 13042 | #[allow(missing_docs)] // documentation missing in model
|
13043 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8669 13044 | pub fn http_date(
|
8670 13045 | mut self,
|
8671 13046 | input: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
8672 13047 | ) -> Self {
|
8673 - | self.http_date = input;
|
13048 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13049 + | self.http_date =
|
13050 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13051 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8674 13052 | self
|
13053 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8675 13054 | }
|
13055 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8676 13056 | #[allow(missing_docs)] // documentation missing in model
|
13057 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8677 13058 | pub fn http_date_on_target(
|
8678 13059 | mut self,
|
8679 13060 | input: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
8680 13061 | ) -> Self {
|
8681 - | self.http_date_on_target = input;
|
13062 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13063 + | self.http_date_on_target =
|
13064 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13065 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8682 13066 | self
|
13067 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8683 13068 | }
|
8684 - | /// Consumes the builder and constructs a [`JsonTimestampsOutput`](crate::output::JsonTimestampsOutput).
|
13069 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`JsonTimestampsOutput`](crate::output::JsonTimestampsOutput).
|
13070 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
8685 13071 | pub fn build(self) -> crate::output::JsonTimestampsOutput {
|
8686 13072 | self.build_enforcing_required_and_enum_traits()
|
8687 13073 | }
|
13074 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8688 13075 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::JsonTimestampsOutput {
|
13076 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8689 13077 | crate::output::JsonTimestampsOutput {
|
13078 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8690 13079 | normal: self.normal,
|
13080 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8691 13081 | date_time: self.date_time,
|
13082 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8692 13083 | date_time_on_target: self.date_time_on_target,
|
13084 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8693 13085 | epoch_seconds: self.epoch_seconds,
|
13086 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8694 13087 | epoch_seconds_on_target: self.epoch_seconds_on_target,
|
13088 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8695 13089 | http_date: self.http_date,
|
13090 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8696 13091 | http_date_on_target: self.http_date_on_target,
|
13092 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8697 13093 | }
|
13094 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8698 13095 | }
|
13096 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8699 13097 | }
|
13098 + |
|
13099 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
8700 13100 | }
|
8701 - | /// See [`SimpleScalarPropertiesOutput`](crate::output::SimpleScalarPropertiesOutput).
|
13101 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`SimpleScalarPropertiesOutput`](crate::output::SimpleScalarPropertiesOutput).
|
8702 13102 | pub mod simple_scalar_properties_output {
|
8703 13103 |
|
13104 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
8704 13105 | impl ::std::convert::From<Builder> for crate::output::SimpleScalarPropertiesOutput {
|
8705 13106 | fn from(builder: Builder) -> Self {
|
8706 13107 | builder.build()
|
8707 13108 | }
|
8708 13109 | }
|
8709 - | /// A builder for [`SimpleScalarPropertiesOutput`](crate::output::SimpleScalarPropertiesOutput).
|
13110 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`SimpleScalarPropertiesOutput`](crate::output::SimpleScalarPropertiesOutput).
|
13111 + | /* RustType.kt:516 */
|
8710 13112 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
13113 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8711 13114 | pub struct Builder {
|
13115 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8712 13116 | pub(crate) foo: ::std::option::Option<::std::string::String>,
|
13117 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8713 13118 | pub(crate) string_value: ::std::option::Option<::std::string::String>,
|
13119 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8714 13120 | pub(crate) true_boolean_value: ::std::option::Option<bool>,
|
13121 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8715 13122 | pub(crate) false_boolean_value: ::std::option::Option<bool>,
|
13123 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8716 13124 | pub(crate) byte_value: ::std::option::Option<i8>,
|
13125 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8717 13126 | pub(crate) short_value: ::std::option::Option<i16>,
|
13127 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8718 13128 | pub(crate) integer_value: ::std::option::Option<i32>,
|
13129 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8719 13130 | pub(crate) long_value: ::std::option::Option<i64>,
|
13131 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8720 13132 | pub(crate) float_value: ::std::option::Option<f32>,
|
13133 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8721 13134 | pub(crate) double_value: ::std::option::Option<f64>,
|
13135 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8722 13136 | }
|
13137 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8723 13138 | impl Builder {
|
13139 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8724 13140 | #[allow(missing_docs)] // documentation missing in model
|
13141 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8725 13142 | pub fn foo(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
|
8726 - | self.foo = input;
|
13143 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13144 + | self.foo =
|
13145 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13146 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8727 13147 | self
|
13148 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8728 13149 | }
|
13150 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8729 13151 | #[allow(missing_docs)] // documentation missing in model
|
13152 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8730 13153 | pub fn string_value(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
|
8731 - | self.string_value = input;
|
13154 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13155 + | self.string_value =
|
13156 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13157 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8732 13158 | self
|
13159 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8733 13160 | }
|
13161 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8734 13162 | #[allow(missing_docs)] // documentation missing in model
|
13163 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8735 13164 | pub fn true_boolean_value(mut self, input: ::std::option::Option<bool>) -> Self {
|
8736 - | self.true_boolean_value = input;
|
13165 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13166 + | self.true_boolean_value =
|
13167 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13168 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8737 13169 | self
|
13170 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8738 13171 | }
|
13172 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8739 13173 | #[allow(missing_docs)] // documentation missing in model
|
13174 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8740 13175 | pub fn false_boolean_value(mut self, input: ::std::option::Option<bool>) -> Self {
|
8741 - | self.false_boolean_value = input;
|
13176 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13177 + | self.false_boolean_value =
|
13178 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13179 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8742 13180 | self
|
13181 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8743 13182 | }
|
13183 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8744 13184 | #[allow(missing_docs)] // documentation missing in model
|
13185 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8745 13186 | pub fn byte_value(mut self, input: ::std::option::Option<i8>) -> Self {
|
8746 - | self.byte_value = input;
|
13187 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13188 + | self.byte_value =
|
13189 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13190 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8747 13191 | self
|
13192 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8748 13193 | }
|
13194 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8749 13195 | #[allow(missing_docs)] // documentation missing in model
|
13196 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8750 13197 | pub fn short_value(mut self, input: ::std::option::Option<i16>) -> Self {
|
8751 - | self.short_value = input;
|
13198 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13199 + | self.short_value =
|
13200 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13201 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8752 13202 | self
|
13203 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8753 13204 | }
|
13205 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8754 13206 | #[allow(missing_docs)] // documentation missing in model
|
13207 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8755 13208 | pub fn integer_value(mut self, input: ::std::option::Option<i32>) -> Self {
|
8756 - | self.integer_value = input;
|
13209 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13210 + | self.integer_value =
|
13211 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13212 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8757 13213 | self
|
13214 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8758 13215 | }
|
13216 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8759 13217 | #[allow(missing_docs)] // documentation missing in model
|
13218 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8760 13219 | pub fn long_value(mut self, input: ::std::option::Option<i64>) -> Self {
|
8761 - | self.long_value = input;
|
13220 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13221 + | self.long_value =
|
13222 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13223 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8762 13224 | self
|
13225 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8763 13226 | }
|
13227 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8764 13228 | #[allow(missing_docs)] // documentation missing in model
|
13229 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8765 13230 | pub fn float_value(mut self, input: ::std::option::Option<f32>) -> Self {
|
8766 - | self.float_value = input;
|
13231 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13232 + | self.float_value =
|
13233 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13234 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8767 13235 | self
|
13236 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8768 13237 | }
|
13238 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8769 13239 | #[allow(missing_docs)] // documentation missing in model
|
13240 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8770 13241 | pub fn double_value(mut self, input: ::std::option::Option<f64>) -> Self {
|
8771 - | self.double_value = input;
|
13242 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13243 + | self.double_value =
|
13244 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13245 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8772 13246 | self
|
13247 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8773 13248 | }
|
8774 - | /// Consumes the builder and constructs a [`SimpleScalarPropertiesOutput`](crate::output::SimpleScalarPropertiesOutput).
|
13249 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`SimpleScalarPropertiesOutput`](crate::output::SimpleScalarPropertiesOutput).
|
13250 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
8775 13251 | pub fn build(self) -> crate::output::SimpleScalarPropertiesOutput {
|
8776 13252 | self.build_enforcing_required_and_enum_traits()
|
8777 13253 | }
|
13254 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8778 13255 | fn build_enforcing_required_and_enum_traits(
|
8779 13256 | self,
|
8780 13257 | ) -> crate::output::SimpleScalarPropertiesOutput {
|
13258 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8781 13259 | crate::output::SimpleScalarPropertiesOutput {
|
13260 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8782 13261 | foo: self.foo,
|
13262 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8783 13263 | string_value: self.string_value,
|
13264 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8784 13265 | true_boolean_value: self.true_boolean_value,
|
13266 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8785 13267 | false_boolean_value: self.false_boolean_value,
|
13268 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8786 13269 | byte_value: self.byte_value,
|
13270 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8787 13271 | short_value: self.short_value,
|
13272 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8788 13273 | integer_value: self.integer_value,
|
13274 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8789 13275 | long_value: self.long_value,
|
13276 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8790 13277 | float_value: self.float_value,
|
13278 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8791 13279 | double_value: self.double_value,
|
13280 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8792 13281 | }
|
13282 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8793 13283 | }
|
13284 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8794 13285 | }
|
13286 + |
|
13287 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
8795 13288 | }
|
8796 - | /// See [`GreetingWithErrorsOutput`](crate::output::GreetingWithErrorsOutput).
|
13289 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`GreetingWithErrorsOutput`](crate::output::GreetingWithErrorsOutput).
|
8797 13290 | pub mod greeting_with_errors_output {
|
8798 13291 |
|
13292 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
8799 13293 | impl ::std::convert::From<Builder> for crate::output::GreetingWithErrorsOutput {
|
8800 13294 | fn from(builder: Builder) -> Self {
|
8801 13295 | builder.build()
|
8802 13296 | }
|
8803 13297 | }
|
8804 - | /// A builder for [`GreetingWithErrorsOutput`](crate::output::GreetingWithErrorsOutput).
|
13298 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`GreetingWithErrorsOutput`](crate::output::GreetingWithErrorsOutput).
|
13299 + | /* RustType.kt:516 */
|
8805 13300 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
13301 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8806 13302 | pub struct Builder {
|
13303 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8807 13304 | pub(crate) greeting: ::std::option::Option<::std::string::String>,
|
13305 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8808 13306 | }
|
13307 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8809 13308 | impl Builder {
|
13309 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8810 13310 | #[allow(missing_docs)] // documentation missing in model
|
13311 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8811 13312 | pub fn greeting(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
|
8812 - | self.greeting = input;
|
13313 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13314 + | self.greeting =
|
13315 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13316 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8813 13317 | self
|
13318 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8814 13319 | }
|
8815 - | /// Consumes the builder and constructs a [`GreetingWithErrorsOutput`](crate::output::GreetingWithErrorsOutput).
|
13320 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`GreetingWithErrorsOutput`](crate::output::GreetingWithErrorsOutput).
|
13321 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
8816 13322 | pub fn build(self) -> crate::output::GreetingWithErrorsOutput {
|
8817 13323 | self.build_enforcing_required_and_enum_traits()
|
8818 13324 | }
|
13325 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8819 13326 | fn build_enforcing_required_and_enum_traits(
|
8820 13327 | self,
|
8821 13328 | ) -> crate::output::GreetingWithErrorsOutput {
|
13329 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8822 13330 | crate::output::GreetingWithErrorsOutput {
|
13331 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8823 13332 | greeting: self.greeting,
|
13333 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8824 13334 | }
|
13335 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8825 13336 | }
|
13337 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8826 13338 | }
|
13339 + |
|
13340 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
8827 13341 | }
|
8828 - | /// See [`StreamingTraitsWithMediaTypeOutput`](crate::output::StreamingTraitsWithMediaTypeOutput).
|
13342 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`StreamingTraitsWithMediaTypeOutput`](crate::output::StreamingTraitsWithMediaTypeOutput).
|
8829 13343 | pub mod streaming_traits_with_media_type_output {
|
8830 13344 |
|
13345 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
8831 13346 | impl ::std::convert::From<Builder> for crate::output::StreamingTraitsWithMediaTypeOutput {
|
8832 13347 | fn from(builder: Builder) -> Self {
|
8833 13348 | builder.build()
|
8834 13349 | }
|
8835 13350 | }
|
8836 - | /// A builder for [`StreamingTraitsWithMediaTypeOutput`](crate::output::StreamingTraitsWithMediaTypeOutput).
|
13351 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`StreamingTraitsWithMediaTypeOutput`](crate::output::StreamingTraitsWithMediaTypeOutput).
|
13352 + | /* RustType.kt:516 */
|
8837 13353 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
13354 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8838 13355 | pub struct Builder {
|
13356 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8839 13357 | pub(crate) foo: ::std::option::Option<::std::string::String>,
|
13358 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8840 13359 | pub(crate) blob: ::std::option::Option<::aws_smithy_http_server_python::types::ByteStream>,
|
13360 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8841 13361 | }
|
13362 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8842 13363 | impl Builder {
|
13364 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8843 13365 | #[allow(missing_docs)] // documentation missing in model
|
13366 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8844 13367 | pub fn foo(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
|
8845 - | self.foo = input;
|
13368 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13369 + | self.foo =
|
13370 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13371 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8846 13372 | self
|
13373 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8847 13374 | }
|
13375 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8848 13376 | #[allow(missing_docs)] // documentation missing in model
|
13377 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8849 13378 | pub fn blob(mut self, input: ::aws_smithy_http_server_python::types::ByteStream) -> Self {
|
8850 - | self.blob = Some(input);
|
13379 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13380 + | self.blob =
|
13381 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
13382 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13383 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
13384 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8851 13385 | self
|
13386 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8852 13387 | }
|
8853 - | /// Consumes the builder and constructs a [`StreamingTraitsWithMediaTypeOutput`](crate::output::StreamingTraitsWithMediaTypeOutput).
|
13388 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`StreamingTraitsWithMediaTypeOutput`](crate::output::StreamingTraitsWithMediaTypeOutput).
|
13389 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
8854 13390 | pub fn build(self) -> crate::output::StreamingTraitsWithMediaTypeOutput {
|
8855 13391 | self.build_enforcing_required_and_enum_traits()
|
8856 13392 | }
|
13393 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8857 13394 | fn build_enforcing_required_and_enum_traits(
|
8858 13395 | self,
|
8859 13396 | ) -> crate::output::StreamingTraitsWithMediaTypeOutput {
|
13397 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8860 13398 | crate::output::StreamingTraitsWithMediaTypeOutput {
|
13399 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8861 13400 | foo: self.foo,
|
8862 - | blob: self.blob.unwrap_or_default(),
|
13401 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
13402 + | blob: self
|
13403 + | .blob
|
13404 + | /* ServerBuilderGeneratorCommon.kt:113 */
|
13405 + | .unwrap_or_default(),
|
13406 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8863 13407 | }
|
13408 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8864 13409 | }
|
13410 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8865 13411 | }
|
13412 + |
|
13413 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
8866 13414 | }
|
8867 - | /// See [`StreamingTraitsRequireLengthOutput`](crate::output::StreamingTraitsRequireLengthOutput).
|
13415 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`StreamingTraitsRequireLengthOutput`](crate::output::StreamingTraitsRequireLengthOutput).
|
8868 13416 | pub mod streaming_traits_require_length_output {
|
8869 13417 |
|
13418 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
8870 13419 | impl ::std::convert::From<Builder> for crate::output::StreamingTraitsRequireLengthOutput {
|
8871 13420 | fn from(builder: Builder) -> Self {
|
8872 13421 | builder.build()
|
8873 13422 | }
|
8874 13423 | }
|
8875 - | /// A builder for [`StreamingTraitsRequireLengthOutput`](crate::output::StreamingTraitsRequireLengthOutput).
|
13424 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`StreamingTraitsRequireLengthOutput`](crate::output::StreamingTraitsRequireLengthOutput).
|
13425 + | /* RustType.kt:516 */
|
8876 13426 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
8877 - | pub struct Builder {}
|
13427 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
13428 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
13429 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8878 13430 | impl Builder {
|
8879 - | /// Consumes the builder and constructs a [`StreamingTraitsRequireLengthOutput`](crate::output::StreamingTraitsRequireLengthOutput).
|
13431 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`StreamingTraitsRequireLengthOutput`](crate::output::StreamingTraitsRequireLengthOutput).
|
13432 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
8880 13433 | pub fn build(self) -> crate::output::StreamingTraitsRequireLengthOutput {
|
8881 13434 | self.build_enforcing_required_and_enum_traits()
|
8882 13435 | }
|
13436 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8883 13437 | fn build_enforcing_required_and_enum_traits(
|
8884 13438 | self,
|
8885 13439 | ) -> crate::output::StreamingTraitsRequireLengthOutput {
|
8886 - | crate::output::StreamingTraitsRequireLengthOutput {}
|
13440 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
13441 + | crate::output::StreamingTraitsRequireLengthOutput {
|
13442 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
13443 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8887 13444 | }
|
13445 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8888 13446 | }
|
13447 + |
|
13448 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
8889 13449 | }
|
8890 - | /// See [`StreamingTraitsOutput`](crate::output::StreamingTraitsOutput).
|
13450 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`StreamingTraitsOutput`](crate::output::StreamingTraitsOutput).
|
8891 13451 | pub mod streaming_traits_output {
|
8892 13452 |
|
13453 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
8893 13454 | impl ::std::convert::From<Builder> for crate::output::StreamingTraitsOutput {
|
8894 13455 | fn from(builder: Builder) -> Self {
|
8895 13456 | builder.build()
|
8896 13457 | }
|
8897 13458 | }
|
8898 - | /// A builder for [`StreamingTraitsOutput`](crate::output::StreamingTraitsOutput).
|
13459 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`StreamingTraitsOutput`](crate::output::StreamingTraitsOutput).
|
13460 + | /* RustType.kt:516 */
|
8899 13461 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
13462 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8900 13463 | pub struct Builder {
|
13464 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8901 13465 | pub(crate) foo: ::std::option::Option<::std::string::String>,
|
13466 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8902 13467 | pub(crate) blob: ::std::option::Option<::aws_smithy_http_server_python::types::ByteStream>,
|
13468 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8903 13469 | }
|
13470 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8904 13471 | impl Builder {
|
13472 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8905 13473 | #[allow(missing_docs)] // documentation missing in model
|
13474 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8906 13475 | pub fn foo(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
|
8907 - | self.foo = input;
|
13476 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13477 + | self.foo =
|
13478 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13479 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8908 13480 | self
|
13481 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8909 13482 | }
|
13483 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8910 13484 | #[allow(missing_docs)] // documentation missing in model
|
13485 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8911 13486 | pub fn blob(mut self, input: ::aws_smithy_http_server_python::types::ByteStream) -> Self {
|
8912 - | self.blob = Some(input);
|
13487 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13488 + | self.blob =
|
13489 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */Some(
|
13490 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13491 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:246 */)
|
13492 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8913 13493 | self
|
13494 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8914 13495 | }
|
8915 - | /// Consumes the builder and constructs a [`StreamingTraitsOutput`](crate::output::StreamingTraitsOutput).
|
13496 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`StreamingTraitsOutput`](crate::output::StreamingTraitsOutput).
|
13497 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
8916 13498 | pub fn build(self) -> crate::output::StreamingTraitsOutput {
|
8917 13499 | self.build_enforcing_required_and_enum_traits()
|
8918 13500 | }
|
13501 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8919 13502 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::StreamingTraitsOutput {
|
13503 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8920 13504 | crate::output::StreamingTraitsOutput {
|
13505 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8921 13506 | foo: self.foo,
|
8922 - | blob: self.blob.unwrap_or_default(),
|
13507 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
13508 + | blob: self
|
13509 + | .blob
|
13510 + | /* ServerBuilderGeneratorCommon.kt:113 */
|
13511 + | .unwrap_or_default(),
|
13512 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8923 13513 | }
|
13514 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8924 13515 | }
|
13516 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8925 13517 | }
|
13518 + |
|
13519 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
8926 13520 | }
|
8927 - | /// See [`HttpResponseCodeOutput`](crate::output::HttpResponseCodeOutput).
|
13521 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`HttpResponseCodeOutput`](crate::output::HttpResponseCodeOutput).
|
8928 13522 | pub mod http_response_code_output {
|
8929 13523 |
|
13524 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
8930 13525 | impl ::std::convert::From<Builder> for crate::output::HttpResponseCodeOutput {
|
8931 13526 | fn from(builder: Builder) -> Self {
|
8932 13527 | builder.build()
|
8933 13528 | }
|
8934 13529 | }
|
8935 - | /// A builder for [`HttpResponseCodeOutput`](crate::output::HttpResponseCodeOutput).
|
13530 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`HttpResponseCodeOutput`](crate::output::HttpResponseCodeOutput).
|
13531 + | /* RustType.kt:516 */
|
8936 13532 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
13533 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8937 13534 | pub struct Builder {
|
13535 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8938 13536 | pub(crate) status: ::std::option::Option<i32>,
|
13537 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8939 13538 | }
|
13539 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8940 13540 | impl Builder {
|
13541 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8941 13542 | #[allow(missing_docs)] // documentation missing in model
|
13543 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8942 13544 | pub fn status(mut self, input: ::std::option::Option<i32>) -> Self {
|
8943 - | self.status = input;
|
13545 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13546 + | self.status =
|
13547 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13548 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8944 13549 | self
|
13550 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8945 13551 | }
|
8946 - | /// Consumes the builder and constructs a [`HttpResponseCodeOutput`](crate::output::HttpResponseCodeOutput).
|
13552 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`HttpResponseCodeOutput`](crate::output::HttpResponseCodeOutput).
|
13553 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
8947 13554 | pub fn build(self) -> crate::output::HttpResponseCodeOutput {
|
8948 13555 | self.build_enforcing_required_and_enum_traits()
|
8949 13556 | }
|
13557 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8950 13558 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::HttpResponseCodeOutput {
|
13559 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8951 13560 | crate::output::HttpResponseCodeOutput {
|
13561 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8952 13562 | status: self.status,
|
13563 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8953 13564 | }
|
13565 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8954 13566 | }
|
13567 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8955 13568 | }
|
13569 + |
|
13570 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
8956 13571 | }
|
8957 - | /// See [`HttpPayloadWithUnionOutput`](crate::output::HttpPayloadWithUnionOutput).
|
13572 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`HttpPayloadWithUnionOutput`](crate::output::HttpPayloadWithUnionOutput).
|
8958 13573 | pub mod http_payload_with_union_output {
|
8959 13574 |
|
13575 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
8960 13576 | impl ::std::convert::From<Builder> for crate::output::HttpPayloadWithUnionOutput {
|
8961 13577 | fn from(builder: Builder) -> Self {
|
8962 13578 | builder.build()
|
8963 13579 | }
|
8964 13580 | }
|
8965 - | /// A builder for [`HttpPayloadWithUnionOutput`](crate::output::HttpPayloadWithUnionOutput).
|
13581 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`HttpPayloadWithUnionOutput`](crate::output::HttpPayloadWithUnionOutput).
|
13582 + | /* RustType.kt:516 */
|
8966 13583 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
13584 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8967 13585 | pub struct Builder {
|
13586 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
8968 13587 | pub(crate) nested: ::std::option::Option<crate::model::UnionPayload>,
|
13588 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8969 13589 | }
|
13590 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8970 13591 | impl Builder {
|
13592 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
8971 13593 | #[allow(missing_docs)] // documentation missing in model
|
13594 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8972 13595 | pub fn nested(mut self, input: ::std::option::Option<crate::model::UnionPayload>) -> Self {
|
8973 - | self.nested = input;
|
13596 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13597 + | self.nested =
|
13598 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13599 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
8974 13600 | self
|
13601 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
8975 13602 | }
|
8976 - | /// Consumes the builder and constructs a [`HttpPayloadWithUnionOutput`](crate::output::HttpPayloadWithUnionOutput).
|
13603 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`HttpPayloadWithUnionOutput`](crate::output::HttpPayloadWithUnionOutput).
|
13604 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
8977 13605 | pub fn build(self) -> crate::output::HttpPayloadWithUnionOutput {
|
8978 13606 | self.build_enforcing_required_and_enum_traits()
|
8979 13607 | }
|
13608 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8980 13609 | fn build_enforcing_required_and_enum_traits(
|
8981 13610 | self,
|
8982 13611 | ) -> crate::output::HttpPayloadWithUnionOutput {
|
13612 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8983 13613 | crate::output::HttpPayloadWithUnionOutput {
|
13614 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
8984 13615 | nested: self.nested,
|
13616 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
8985 13617 | }
|
13618 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
8986 13619 | }
|
13620 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
8987 13621 | }
|
13622 + |
|
13623 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
8988 13624 | }
|
8989 - | /// See [`HttpStringPayloadOutput`](crate::output::HttpStringPayloadOutput).
|
13625 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`HttpStringPayloadOutput`](crate::output::HttpStringPayloadOutput).
|
8990 13626 | pub mod http_string_payload_output {
|
8991 13627 |
|
13628 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
8992 13629 | impl ::std::convert::From<Builder> for crate::output::HttpStringPayloadOutput {
|
8993 13630 | fn from(builder: Builder) -> Self {
|
8994 13631 | builder.build()
|
8995 13632 | }
|
8996 13633 | }
|
8997 - | /// A builder for [`HttpStringPayloadOutput`](crate::output::HttpStringPayloadOutput).
|
13634 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`HttpStringPayloadOutput`](crate::output::HttpStringPayloadOutput).
|
13635 + | /* RustType.kt:516 */
|
8998 13636 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
13637 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
8999 13638 | pub struct Builder {
|
13639 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9000 13640 | pub(crate) payload: ::std::option::Option<::std::string::String>,
|
13641 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
9001 13642 | }
|
13643 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9002 13644 | impl Builder {
|
13645 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9003 13646 | #[allow(missing_docs)] // documentation missing in model
|
13647 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9004 13648 | pub fn payload(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
|
9005 - | self.payload = input;
|
13649 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13650 + | self.payload =
|
13651 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13652 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9006 13653 | self
|
13654 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9007 13655 | }
|
9008 - | /// Consumes the builder and constructs a [`HttpStringPayloadOutput`](crate::output::HttpStringPayloadOutput).
|
13656 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`HttpStringPayloadOutput`](crate::output::HttpStringPayloadOutput).
|
13657 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
9009 13658 | pub fn build(self) -> crate::output::HttpStringPayloadOutput {
|
9010 13659 | self.build_enforcing_required_and_enum_traits()
|
9011 13660 | }
|
13661 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9012 13662 | fn build_enforcing_required_and_enum_traits(
|
9013 13663 | self,
|
9014 13664 | ) -> crate::output::HttpStringPayloadOutput {
|
13665 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
9015 13666 | crate::output::HttpStringPayloadOutput {
|
13667 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9016 13668 | payload: self.payload,
|
13669 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
9017 13670 | }
|
13671 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9018 13672 | }
|
13673 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9019 13674 | }
|
13675 + |
|
13676 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
9020 13677 | }
|
9021 - | /// See [`HttpEnumPayloadOutput`](crate::output::HttpEnumPayloadOutput).
|
13678 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`HttpEnumPayloadOutput`](crate::output::HttpEnumPayloadOutput).
|
9022 13679 | pub mod http_enum_payload_output {
|
9023 13680 |
|
13681 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
9024 13682 | impl ::std::convert::From<Builder> for crate::output::HttpEnumPayloadOutput {
|
9025 13683 | fn from(builder: Builder) -> Self {
|
9026 13684 | builder.build()
|
9027 13685 | }
|
9028 13686 | }
|
9029 - | /// A builder for [`HttpEnumPayloadOutput`](crate::output::HttpEnumPayloadOutput).
|
13687 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`HttpEnumPayloadOutput`](crate::output::HttpEnumPayloadOutput).
|
13688 + | /* RustType.kt:516 */
|
9030 13689 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
13690 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
9031 13691 | pub struct Builder {
|
13692 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9032 13693 | pub(crate) payload: ::std::option::Option<crate::model::StringEnum>,
|
13694 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
9033 13695 | }
|
13696 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9034 13697 | impl Builder {
|
13698 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9035 13699 | #[allow(missing_docs)] // documentation missing in model
|
13700 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9036 13701 | pub fn payload(mut self, input: ::std::option::Option<crate::model::StringEnum>) -> Self {
|
9037 - | self.payload = input;
|
13702 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13703 + | self.payload =
|
13704 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13705 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9038 13706 | self
|
13707 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9039 13708 | }
|
9040 - | /// Consumes the builder and constructs a [`HttpEnumPayloadOutput`](crate::output::HttpEnumPayloadOutput).
|
13709 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`HttpEnumPayloadOutput`](crate::output::HttpEnumPayloadOutput).
|
13710 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
9041 13711 | pub fn build(self) -> crate::output::HttpEnumPayloadOutput {
|
9042 13712 | self.build_enforcing_required_and_enum_traits()
|
9043 13713 | }
|
13714 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9044 13715 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::HttpEnumPayloadOutput {
|
13716 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
9045 13717 | crate::output::HttpEnumPayloadOutput {
|
13718 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9046 13719 | payload: self.payload,
|
13720 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
9047 13721 | }
|
13722 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9048 13723 | }
|
13724 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9049 13725 | }
|
13726 + |
|
13727 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
9050 13728 | }
|
9051 - | /// See [`HttpPayloadWithStructureOutput`](crate::output::HttpPayloadWithStructureOutput).
|
13729 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`HttpPayloadWithStructureOutput`](crate::output::HttpPayloadWithStructureOutput).
|
9052 13730 | pub mod http_payload_with_structure_output {
|
9053 13731 |
|
13732 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
9054 13733 | impl ::std::convert::From<Builder> for crate::output::HttpPayloadWithStructureOutput {
|
9055 13734 | fn from(builder: Builder) -> Self {
|
9056 13735 | builder.build()
|
9057 13736 | }
|
9058 13737 | }
|
9059 - | /// A builder for [`HttpPayloadWithStructureOutput`](crate::output::HttpPayloadWithStructureOutput).
|
13738 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`HttpPayloadWithStructureOutput`](crate::output::HttpPayloadWithStructureOutput).
|
13739 + | /* RustType.kt:516 */
|
9060 13740 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
13741 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
9061 13742 | pub struct Builder {
|
13743 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9062 13744 | pub(crate) nested: ::std::option::Option<crate::model::NestedPayload>,
|
13745 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
9063 13746 | }
|
13747 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9064 13748 | impl Builder {
|
13749 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9065 13750 | #[allow(missing_docs)] // documentation missing in model
|
13751 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9066 13752 | pub fn nested(mut self, input: ::std::option::Option<crate::model::NestedPayload>) -> Self {
|
9067 - | self.nested = input;
|
13753 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13754 + | self.nested =
|
13755 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13756 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9068 13757 | self
|
13758 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9069 13759 | }
|
9070 - | /// Consumes the builder and constructs a [`HttpPayloadWithStructureOutput`](crate::output::HttpPayloadWithStructureOutput).
|
13760 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`HttpPayloadWithStructureOutput`](crate::output::HttpPayloadWithStructureOutput).
|
13761 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
9071 13762 | pub fn build(self) -> crate::output::HttpPayloadWithStructureOutput {
|
9072 13763 | self.build_enforcing_required_and_enum_traits()
|
9073 13764 | }
|
13765 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9074 13766 | fn build_enforcing_required_and_enum_traits(
|
9075 13767 | self,
|
9076 13768 | ) -> crate::output::HttpPayloadWithStructureOutput {
|
13769 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
9077 13770 | crate::output::HttpPayloadWithStructureOutput {
|
13771 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9078 13772 | nested: self.nested,
|
13773 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
9079 13774 | }
|
13775 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9080 13776 | }
|
13777 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9081 13778 | }
|
13779 + |
|
13780 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
9082 13781 | }
|
9083 - | /// See [`HttpPayloadTraitsWithMediaTypeOutput`](crate::output::HttpPayloadTraitsWithMediaTypeOutput).
|
13782 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`HttpPayloadTraitsWithMediaTypeOutput`](crate::output::HttpPayloadTraitsWithMediaTypeOutput).
|
9084 13783 | pub mod http_payload_traits_with_media_type_output {
|
9085 13784 |
|
13785 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
9086 13786 | impl ::std::convert::From<Builder> for crate::output::HttpPayloadTraitsWithMediaTypeOutput {
|
9087 13787 | fn from(builder: Builder) -> Self {
|
9088 13788 | builder.build()
|
9089 13789 | }
|
9090 13790 | }
|
9091 - | /// A builder for [`HttpPayloadTraitsWithMediaTypeOutput`](crate::output::HttpPayloadTraitsWithMediaTypeOutput).
|
13791 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`HttpPayloadTraitsWithMediaTypeOutput`](crate::output::HttpPayloadTraitsWithMediaTypeOutput).
|
13792 + | /* RustType.kt:516 */
|
9092 13793 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
13794 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
9093 13795 | pub struct Builder {
|
13796 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9094 13797 | pub(crate) foo: ::std::option::Option<::std::string::String>,
|
13798 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9095 13799 | pub(crate) blob: ::std::option::Option<::aws_smithy_http_server_python::types::Blob>,
|
13800 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
9096 13801 | }
|
13802 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9097 13803 | impl Builder {
|
13804 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9098 13805 | #[allow(missing_docs)] // documentation missing in model
|
13806 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9099 13807 | pub fn foo(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
|
9100 - | self.foo = input;
|
13808 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13809 + | self.foo =
|
13810 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13811 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9101 13812 | self
|
13813 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9102 13814 | }
|
13815 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9103 13816 | #[allow(missing_docs)] // documentation missing in model
|
13817 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9104 13818 | pub fn blob(
|
9105 13819 | mut self,
|
9106 13820 | input: ::std::option::Option<::aws_smithy_http_server_python::types::Blob>,
|
9107 13821 | ) -> Self {
|
9108 - | self.blob = input;
|
13822 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13823 + | self.blob =
|
13824 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13825 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9109 13826 | self
|
13827 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9110 13828 | }
|
9111 - | /// Consumes the builder and constructs a [`HttpPayloadTraitsWithMediaTypeOutput`](crate::output::HttpPayloadTraitsWithMediaTypeOutput).
|
13829 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`HttpPayloadTraitsWithMediaTypeOutput`](crate::output::HttpPayloadTraitsWithMediaTypeOutput).
|
13830 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
9112 13831 | pub fn build(self) -> crate::output::HttpPayloadTraitsWithMediaTypeOutput {
|
9113 13832 | self.build_enforcing_required_and_enum_traits()
|
9114 13833 | }
|
13834 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9115 13835 | fn build_enforcing_required_and_enum_traits(
|
9116 13836 | self,
|
9117 13837 | ) -> crate::output::HttpPayloadTraitsWithMediaTypeOutput {
|
13838 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
9118 13839 | crate::output::HttpPayloadTraitsWithMediaTypeOutput {
|
13840 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9119 13841 | foo: self.foo,
|
13842 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9120 13843 | blob: self.blob,
|
13844 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
9121 13845 | }
|
13846 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9122 13847 | }
|
13848 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9123 13849 | }
|
13850 + |
|
13851 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
9124 13852 | }
|
9125 - | /// See [`HttpPayloadTraitsOutput`](crate::output::HttpPayloadTraitsOutput).
|
13853 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`HttpPayloadTraitsOutput`](crate::output::HttpPayloadTraitsOutput).
|
9126 13854 | pub mod http_payload_traits_output {
|
9127 13855 |
|
13856 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
9128 13857 | impl ::std::convert::From<Builder> for crate::output::HttpPayloadTraitsOutput {
|
9129 13858 | fn from(builder: Builder) -> Self {
|
9130 13859 | builder.build()
|
9131 13860 | }
|
9132 13861 | }
|
9133 - | /// A builder for [`HttpPayloadTraitsOutput`](crate::output::HttpPayloadTraitsOutput).
|
13862 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`HttpPayloadTraitsOutput`](crate::output::HttpPayloadTraitsOutput).
|
13863 + | /* RustType.kt:516 */
|
9134 13864 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
13865 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
9135 13866 | pub struct Builder {
|
13867 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9136 13868 | pub(crate) foo: ::std::option::Option<::std::string::String>,
|
13869 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9137 13870 | pub(crate) blob: ::std::option::Option<::aws_smithy_http_server_python::types::Blob>,
|
13871 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
9138 13872 | }
|
13873 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9139 13874 | impl Builder {
|
13875 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9140 13876 | #[allow(missing_docs)] // documentation missing in model
|
13877 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9141 13878 | pub fn foo(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
|
9142 - | self.foo = input;
|
13879 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13880 + | self.foo =
|
13881 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13882 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9143 13883 | self
|
13884 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9144 13885 | }
|
13886 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9145 13887 | #[allow(missing_docs)] // documentation missing in model
|
13888 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9146 13889 | pub fn blob(
|
9147 13890 | mut self,
|
9148 13891 | input: ::std::option::Option<::aws_smithy_http_server_python::types::Blob>,
|
9149 13892 | ) -> Self {
|
9150 - | self.blob = input;
|
13893 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13894 + | self.blob =
|
13895 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13896 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9151 13897 | self
|
13898 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9152 13899 | }
|
9153 - | /// Consumes the builder and constructs a [`HttpPayloadTraitsOutput`](crate::output::HttpPayloadTraitsOutput).
|
13900 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`HttpPayloadTraitsOutput`](crate::output::HttpPayloadTraitsOutput).
|
13901 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
9154 13902 | pub fn build(self) -> crate::output::HttpPayloadTraitsOutput {
|
9155 13903 | self.build_enforcing_required_and_enum_traits()
|
9156 13904 | }
|
13905 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9157 13906 | fn build_enforcing_required_and_enum_traits(
|
9158 13907 | self,
|
9159 13908 | ) -> crate::output::HttpPayloadTraitsOutput {
|
13909 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
9160 13910 | crate::output::HttpPayloadTraitsOutput {
|
13911 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9161 13912 | foo: self.foo,
|
13913 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9162 13914 | blob: self.blob,
|
13915 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
9163 13916 | }
|
13917 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9164 13918 | }
|
13919 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9165 13920 | }
|
13921 + |
|
13922 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
9166 13923 | }
|
9167 - | /// See [`HttpPrefixHeadersInResponseOutput`](crate::output::HttpPrefixHeadersInResponseOutput).
|
13924 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`HttpPrefixHeadersInResponseOutput`](crate::output::HttpPrefixHeadersInResponseOutput).
|
9168 13925 | pub mod http_prefix_headers_in_response_output {
|
9169 13926 |
|
13927 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
9170 13928 | impl ::std::convert::From<Builder> for crate::output::HttpPrefixHeadersInResponseOutput {
|
9171 13929 | fn from(builder: Builder) -> Self {
|
9172 13930 | builder.build()
|
9173 13931 | }
|
9174 13932 | }
|
9175 - | /// A builder for [`HttpPrefixHeadersInResponseOutput`](crate::output::HttpPrefixHeadersInResponseOutput).
|
13933 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`HttpPrefixHeadersInResponseOutput`](crate::output::HttpPrefixHeadersInResponseOutput).
|
13934 + | /* RustType.kt:516 */
|
9176 13935 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
13936 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
9177 13937 | pub struct Builder {
|
13938 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9178 13939 | pub(crate) prefix_headers: ::std::option::Option<
|
9179 13940 | ::std::collections::HashMap<::std::string::String, ::std::string::String>,
|
9180 13941 | >,
|
13942 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
9181 13943 | }
|
13944 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9182 13945 | impl Builder {
|
13946 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9183 13947 | #[allow(missing_docs)] // documentation missing in model
|
13948 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9184 13949 | pub fn prefix_headers(
|
9185 13950 | mut self,
|
9186 13951 | input: ::std::option::Option<
|
9187 13952 | ::std::collections::HashMap<::std::string::String, ::std::string::String>,
|
9188 13953 | >,
|
9189 13954 | ) -> Self {
|
9190 - | self.prefix_headers = input;
|
13955 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
13956 + | self.prefix_headers =
|
13957 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
13958 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9191 13959 | self
|
13960 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9192 13961 | }
|
9193 - | /// Consumes the builder and constructs a [`HttpPrefixHeadersInResponseOutput`](crate::output::HttpPrefixHeadersInResponseOutput).
|
13962 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`HttpPrefixHeadersInResponseOutput`](crate::output::HttpPrefixHeadersInResponseOutput).
|
13963 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
9194 13964 | pub fn build(self) -> crate::output::HttpPrefixHeadersInResponseOutput {
|
9195 13965 | self.build_enforcing_required_and_enum_traits()
|
9196 13966 | }
|
13967 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9197 13968 | fn build_enforcing_required_and_enum_traits(
|
9198 13969 | self,
|
9199 13970 | ) -> crate::output::HttpPrefixHeadersInResponseOutput {
|
13971 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
9200 13972 | crate::output::HttpPrefixHeadersInResponseOutput {
|
13973 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9201 13974 | prefix_headers: self.prefix_headers,
|
13975 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
9202 13976 | }
|
13977 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9203 13978 | }
|
13979 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9204 13980 | }
|
13981 + |
|
13982 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
9205 13983 | }
|
9206 - | /// See [`HttpPrefixHeadersOutput`](crate::output::HttpPrefixHeadersOutput).
|
13984 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`HttpPrefixHeadersOutput`](crate::output::HttpPrefixHeadersOutput).
|
9207 13985 | pub mod http_prefix_headers_output {
|
9208 13986 |
|
13987 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
9209 13988 | impl ::std::convert::From<Builder> for crate::output::HttpPrefixHeadersOutput {
|
9210 13989 | fn from(builder: Builder) -> Self {
|
9211 13990 | builder.build()
|
9212 13991 | }
|
9213 13992 | }
|
9214 - | /// A builder for [`HttpPrefixHeadersOutput`](crate::output::HttpPrefixHeadersOutput).
|
13993 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`HttpPrefixHeadersOutput`](crate::output::HttpPrefixHeadersOutput).
|
13994 + | /* RustType.kt:516 */
|
9215 13995 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
13996 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
9216 13997 | pub struct Builder {
|
13998 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9217 13999 | pub(crate) foo: ::std::option::Option<::std::string::String>,
|
14000 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9218 14001 | pub(crate) foo_map: ::std::option::Option<
|
9219 14002 | ::std::collections::HashMap<::std::string::String, ::std::string::String>,
|
9220 14003 | >,
|
14004 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
9221 14005 | }
|
14006 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9222 14007 | impl Builder {
|
14008 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9223 14009 | #[allow(missing_docs)] // documentation missing in model
|
14010 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9224 14011 | pub fn foo(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
|
9225 - | self.foo = input;
|
14012 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
14013 + | self.foo =
|
14014 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
14015 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9226 14016 | self
|
14017 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9227 14018 | }
|
14019 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9228 14020 | #[allow(missing_docs)] // documentation missing in model
|
14021 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9229 14022 | pub fn foo_map(
|
9230 14023 | mut self,
|
9231 14024 | input: ::std::option::Option<
|
9232 14025 | ::std::collections::HashMap<::std::string::String, ::std::string::String>,
|
9233 14026 | >,
|
9234 14027 | ) -> Self {
|
9235 - | self.foo_map = input;
|
14028 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
14029 + | self.foo_map =
|
14030 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
14031 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9236 14032 | self
|
14033 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9237 14034 | }
|
9238 - | /// Consumes the builder and constructs a [`HttpPrefixHeadersOutput`](crate::output::HttpPrefixHeadersOutput).
|
14035 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`HttpPrefixHeadersOutput`](crate::output::HttpPrefixHeadersOutput).
|
14036 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
9239 14037 | pub fn build(self) -> crate::output::HttpPrefixHeadersOutput {
|
9240 14038 | self.build_enforcing_required_and_enum_traits()
|
9241 14039 | }
|
14040 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9242 14041 | fn build_enforcing_required_and_enum_traits(
|
9243 14042 | self,
|
9244 14043 | ) -> crate::output::HttpPrefixHeadersOutput {
|
14044 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
9245 14045 | crate::output::HttpPrefixHeadersOutput {
|
14046 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9246 14047 | foo: self.foo,
|
14048 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9247 14049 | foo_map: self.foo_map,
|
14050 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
9248 14051 | }
|
14052 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9249 14053 | }
|
14054 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9250 14055 | }
|
14056 + |
|
14057 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
9251 14058 | }
|
9252 - | /// See [`QueryParamsAsStringListMapOutput`](crate::output::QueryParamsAsStringListMapOutput).
|
14059 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`QueryParamsAsStringListMapOutput`](crate::output::QueryParamsAsStringListMapOutput).
|
9253 14060 | pub mod query_params_as_string_list_map_output {
|
9254 14061 |
|
14062 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
9255 14063 | impl ::std::convert::From<Builder> for crate::output::QueryParamsAsStringListMapOutput {
|
9256 14064 | fn from(builder: Builder) -> Self {
|
9257 14065 | builder.build()
|
9258 14066 | }
|
9259 14067 | }
|
9260 - | /// A builder for [`QueryParamsAsStringListMapOutput`](crate::output::QueryParamsAsStringListMapOutput).
|
14068 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`QueryParamsAsStringListMapOutput`](crate::output::QueryParamsAsStringListMapOutput).
|
14069 + | /* RustType.kt:516 */
|
9261 14070 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
9262 - | pub struct Builder {}
|
14071 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
14072 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
14073 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9263 14074 | impl Builder {
|
9264 - | /// Consumes the builder and constructs a [`QueryParamsAsStringListMapOutput`](crate::output::QueryParamsAsStringListMapOutput).
|
14075 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`QueryParamsAsStringListMapOutput`](crate::output::QueryParamsAsStringListMapOutput).
|
14076 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
9265 14077 | pub fn build(self) -> crate::output::QueryParamsAsStringListMapOutput {
|
9266 14078 | self.build_enforcing_required_and_enum_traits()
|
9267 14079 | }
|
14080 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9268 14081 | fn build_enforcing_required_and_enum_traits(
|
9269 14082 | self,
|
9270 14083 | ) -> crate::output::QueryParamsAsStringListMapOutput {
|
9271 - | crate::output::QueryParamsAsStringListMapOutput {}
|
14084 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
14085 + | crate::output::QueryParamsAsStringListMapOutput {
|
14086 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
14087 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9272 14088 | }
|
14089 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9273 14090 | }
|
14091 + |
|
14092 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
9274 14093 | }
|
9275 - | /// See [`QueryPrecedenceOutput`](crate::output::QueryPrecedenceOutput).
|
14094 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`QueryPrecedenceOutput`](crate::output::QueryPrecedenceOutput).
|
9276 14095 | pub mod query_precedence_output {
|
9277 14096 |
|
14097 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
9278 14098 | impl ::std::convert::From<Builder> for crate::output::QueryPrecedenceOutput {
|
9279 14099 | fn from(builder: Builder) -> Self {
|
9280 14100 | builder.build()
|
9281 14101 | }
|
9282 14102 | }
|
9283 - | /// A builder for [`QueryPrecedenceOutput`](crate::output::QueryPrecedenceOutput).
|
14103 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`QueryPrecedenceOutput`](crate::output::QueryPrecedenceOutput).
|
14104 + | /* RustType.kt:516 */
|
9284 14105 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
9285 - | pub struct Builder {}
|
14106 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
14107 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
14108 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9286 14109 | impl Builder {
|
9287 - | /// Consumes the builder and constructs a [`QueryPrecedenceOutput`](crate::output::QueryPrecedenceOutput).
|
14110 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`QueryPrecedenceOutput`](crate::output::QueryPrecedenceOutput).
|
14111 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
9288 14112 | pub fn build(self) -> crate::output::QueryPrecedenceOutput {
|
9289 14113 | self.build_enforcing_required_and_enum_traits()
|
9290 14114 | }
|
14115 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9291 14116 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::QueryPrecedenceOutput {
|
9292 - | crate::output::QueryPrecedenceOutput {}
|
14117 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
14118 + | crate::output::QueryPrecedenceOutput {
|
14119 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
14120 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9293 14121 | }
|
14122 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9294 14123 | }
|
14124 + |
|
14125 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
9295 14126 | }
|
9296 - | /// See [`QueryIdempotencyTokenAutoFillOutput`](crate::output::QueryIdempotencyTokenAutoFillOutput).
|
14127 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`QueryIdempotencyTokenAutoFillOutput`](crate::output::QueryIdempotencyTokenAutoFillOutput).
|
9297 14128 | pub mod query_idempotency_token_auto_fill_output {
|
9298 14129 |
|
14130 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
9299 14131 | impl ::std::convert::From<Builder> for crate::output::QueryIdempotencyTokenAutoFillOutput {
|
9300 14132 | fn from(builder: Builder) -> Self {
|
9301 14133 | builder.build()
|
9302 14134 | }
|
9303 14135 | }
|
9304 - | /// A builder for [`QueryIdempotencyTokenAutoFillOutput`](crate::output::QueryIdempotencyTokenAutoFillOutput).
|
14136 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`QueryIdempotencyTokenAutoFillOutput`](crate::output::QueryIdempotencyTokenAutoFillOutput).
|
14137 + | /* RustType.kt:516 */
|
9305 14138 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
9306 - | pub struct Builder {}
|
14139 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
14140 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
14141 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9307 14142 | impl Builder {
|
9308 - | /// Consumes the builder and constructs a [`QueryIdempotencyTokenAutoFillOutput`](crate::output::QueryIdempotencyTokenAutoFillOutput).
|
14143 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`QueryIdempotencyTokenAutoFillOutput`](crate::output::QueryIdempotencyTokenAutoFillOutput).
|
14144 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
9309 14145 | pub fn build(self) -> crate::output::QueryIdempotencyTokenAutoFillOutput {
|
9310 14146 | self.build_enforcing_required_and_enum_traits()
|
9311 14147 | }
|
14148 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9312 14149 | fn build_enforcing_required_and_enum_traits(
|
9313 14150 | self,
|
9314 14151 | ) -> crate::output::QueryIdempotencyTokenAutoFillOutput {
|
9315 - | crate::output::QueryIdempotencyTokenAutoFillOutput {}
|
14152 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
14153 + | crate::output::QueryIdempotencyTokenAutoFillOutput {
|
14154 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
14155 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9316 14156 | }
|
14157 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9317 14158 | }
|
14159 + |
|
14160 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
9318 14161 | }
|
9319 - | /// See [`OmitsSerializingEmptyListsOutput`](crate::output::OmitsSerializingEmptyListsOutput).
|
14162 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`OmitsSerializingEmptyListsOutput`](crate::output::OmitsSerializingEmptyListsOutput).
|
9320 14163 | pub mod omits_serializing_empty_lists_output {
|
9321 14164 |
|
14165 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
9322 14166 | impl ::std::convert::From<Builder> for crate::output::OmitsSerializingEmptyListsOutput {
|
9323 14167 | fn from(builder: Builder) -> Self {
|
9324 14168 | builder.build()
|
9325 14169 | }
|
9326 14170 | }
|
9327 - | /// A builder for [`OmitsSerializingEmptyListsOutput`](crate::output::OmitsSerializingEmptyListsOutput).
|
14171 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`OmitsSerializingEmptyListsOutput`](crate::output::OmitsSerializingEmptyListsOutput).
|
14172 + | /* RustType.kt:516 */
|
9328 14173 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
9329 - | pub struct Builder {}
|
14174 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
14175 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
14176 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9330 14177 | impl Builder {
|
9331 - | /// Consumes the builder and constructs a [`OmitsSerializingEmptyListsOutput`](crate::output::OmitsSerializingEmptyListsOutput).
|
14178 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`OmitsSerializingEmptyListsOutput`](crate::output::OmitsSerializingEmptyListsOutput).
|
14179 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
9332 14180 | pub fn build(self) -> crate::output::OmitsSerializingEmptyListsOutput {
|
9333 14181 | self.build_enforcing_required_and_enum_traits()
|
9334 14182 | }
|
14183 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9335 14184 | fn build_enforcing_required_and_enum_traits(
|
9336 14185 | self,
|
9337 14186 | ) -> crate::output::OmitsSerializingEmptyListsOutput {
|
9338 - | crate::output::OmitsSerializingEmptyListsOutput {}
|
14187 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
14188 + | crate::output::OmitsSerializingEmptyListsOutput {
|
14189 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
14190 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9339 14191 | }
|
14192 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9340 14193 | }
|
14194 + |
|
14195 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
9341 14196 | }
|
9342 - | /// See [`OmitsNullSerializesEmptyStringOutput`](crate::output::OmitsNullSerializesEmptyStringOutput).
|
14197 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`OmitsNullSerializesEmptyStringOutput`](crate::output::OmitsNullSerializesEmptyStringOutput).
|
9343 14198 | pub mod omits_null_serializes_empty_string_output {
|
9344 14199 |
|
14200 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
9345 14201 | impl ::std::convert::From<Builder> for crate::output::OmitsNullSerializesEmptyStringOutput {
|
9346 14202 | fn from(builder: Builder) -> Self {
|
9347 14203 | builder.build()
|
9348 14204 | }
|
9349 14205 | }
|
9350 - | /// A builder for [`OmitsNullSerializesEmptyStringOutput`](crate::output::OmitsNullSerializesEmptyStringOutput).
|
14206 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`OmitsNullSerializesEmptyStringOutput`](crate::output::OmitsNullSerializesEmptyStringOutput).
|
14207 + | /* RustType.kt:516 */
|
9351 14208 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
9352 - | pub struct Builder {}
|
14209 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
14210 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
14211 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9353 14212 | impl Builder {
|
9354 - | /// Consumes the builder and constructs a [`OmitsNullSerializesEmptyStringOutput`](crate::output::OmitsNullSerializesEmptyStringOutput).
|
14213 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`OmitsNullSerializesEmptyStringOutput`](crate::output::OmitsNullSerializesEmptyStringOutput).
|
14214 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
9355 14215 | pub fn build(self) -> crate::output::OmitsNullSerializesEmptyStringOutput {
|
9356 14216 | self.build_enforcing_required_and_enum_traits()
|
9357 14217 | }
|
14218 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9358 14219 | fn build_enforcing_required_and_enum_traits(
|
9359 14220 | self,
|
9360 14221 | ) -> crate::output::OmitsNullSerializesEmptyStringOutput {
|
9361 - | crate::output::OmitsNullSerializesEmptyStringOutput {}
|
14222 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
14223 + | crate::output::OmitsNullSerializesEmptyStringOutput {
|
14224 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
14225 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9362 14226 | }
|
14227 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9363 14228 | }
|
14229 + |
|
14230 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
9364 14231 | }
|
9365 - | /// See [`IgnoreQueryParamsInResponseOutput`](crate::output::IgnoreQueryParamsInResponseOutput).
|
14232 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`IgnoreQueryParamsInResponseOutput`](crate::output::IgnoreQueryParamsInResponseOutput).
|
9366 14233 | pub mod ignore_query_params_in_response_output {
|
9367 14234 |
|
14235 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
9368 14236 | impl ::std::convert::From<Builder> for crate::output::IgnoreQueryParamsInResponseOutput {
|
9369 14237 | fn from(builder: Builder) -> Self {
|
9370 14238 | builder.build()
|
9371 14239 | }
|
9372 14240 | }
|
9373 - | /// A builder for [`IgnoreQueryParamsInResponseOutput`](crate::output::IgnoreQueryParamsInResponseOutput).
|
14241 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`IgnoreQueryParamsInResponseOutput`](crate::output::IgnoreQueryParamsInResponseOutput).
|
14242 + | /* RustType.kt:516 */
|
9374 14243 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
14244 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
9375 14245 | pub struct Builder {
|
14246 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9376 14247 | pub(crate) baz: ::std::option::Option<::std::string::String>,
|
14248 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
9377 14249 | }
|
14250 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9378 14251 | impl Builder {
|
14252 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9379 14253 | #[allow(missing_docs)] // documentation missing in model
|
14254 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9380 14255 | pub fn baz(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
|
9381 - | self.baz = input;
|
14256 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
14257 + | self.baz =
|
14258 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
14259 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9382 14260 | self
|
14261 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9383 14262 | }
|
9384 - | /// Consumes the builder and constructs a [`IgnoreQueryParamsInResponseOutput`](crate::output::IgnoreQueryParamsInResponseOutput).
|
14263 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`IgnoreQueryParamsInResponseOutput`](crate::output::IgnoreQueryParamsInResponseOutput).
|
14264 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
9385 14265 | pub fn build(self) -> crate::output::IgnoreQueryParamsInResponseOutput {
|
9386 14266 | self.build_enforcing_required_and_enum_traits()
|
9387 14267 | }
|
14268 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9388 14269 | fn build_enforcing_required_and_enum_traits(
|
9389 14270 | self,
|
9390 14271 | ) -> crate::output::IgnoreQueryParamsInResponseOutput {
|
9391 - | crate::output::IgnoreQueryParamsInResponseOutput { baz: self.baz }
|
14272 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
14273 + | crate::output::IgnoreQueryParamsInResponseOutput {
|
14274 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
14275 + | baz: self.baz,
|
14276 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
14277 + | }
|
14278 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9392 14279 | }
|
14280 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9393 14281 | }
|
14282 + |
|
14283 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
9394 14284 | }
|
9395 - | /// See [`ConstantAndVariableQueryStringOutput`](crate::output::ConstantAndVariableQueryStringOutput).
|
14285 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`ConstantAndVariableQueryStringOutput`](crate::output::ConstantAndVariableQueryStringOutput).
|
9396 14286 | pub mod constant_and_variable_query_string_output {
|
9397 14287 |
|
14288 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
9398 14289 | impl ::std::convert::From<Builder> for crate::output::ConstantAndVariableQueryStringOutput {
|
9399 14290 | fn from(builder: Builder) -> Self {
|
9400 14291 | builder.build()
|
9401 14292 | }
|
9402 14293 | }
|
9403 - | /// A builder for [`ConstantAndVariableQueryStringOutput`](crate::output::ConstantAndVariableQueryStringOutput).
|
14294 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`ConstantAndVariableQueryStringOutput`](crate::output::ConstantAndVariableQueryStringOutput).
|
14295 + | /* RustType.kt:516 */
|
9404 14296 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
9405 - | pub struct Builder {}
|
14297 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
14298 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
14299 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9406 14300 | impl Builder {
|
9407 - | /// Consumes the builder and constructs a [`ConstantAndVariableQueryStringOutput`](crate::output::ConstantAndVariableQueryStringOutput).
|
14301 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`ConstantAndVariableQueryStringOutput`](crate::output::ConstantAndVariableQueryStringOutput).
|
14302 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
9408 14303 | pub fn build(self) -> crate::output::ConstantAndVariableQueryStringOutput {
|
9409 14304 | self.build_enforcing_required_and_enum_traits()
|
9410 14305 | }
|
14306 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9411 14307 | fn build_enforcing_required_and_enum_traits(
|
9412 14308 | self,
|
9413 14309 | ) -> crate::output::ConstantAndVariableQueryStringOutput {
|
9414 - | crate::output::ConstantAndVariableQueryStringOutput {}
|
14310 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
14311 + | crate::output::ConstantAndVariableQueryStringOutput {
|
14312 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
14313 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9415 14314 | }
|
14315 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9416 14316 | }
|
14317 + |
|
14318 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
9417 14319 | }
|
9418 - | /// See [`ConstantQueryStringOutput`](crate::output::ConstantQueryStringOutput).
|
14320 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`ConstantQueryStringOutput`](crate::output::ConstantQueryStringOutput).
|
9419 14321 | pub mod constant_query_string_output {
|
9420 14322 |
|
14323 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
9421 14324 | impl ::std::convert::From<Builder> for crate::output::ConstantQueryStringOutput {
|
9422 14325 | fn from(builder: Builder) -> Self {
|
9423 14326 | builder.build()
|
9424 14327 | }
|
9425 14328 | }
|
9426 - | /// A builder for [`ConstantQueryStringOutput`](crate::output::ConstantQueryStringOutput).
|
14329 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`ConstantQueryStringOutput`](crate::output::ConstantQueryStringOutput).
|
14330 + | /* RustType.kt:516 */
|
9427 14331 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
9428 - | pub struct Builder {}
|
14332 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
14333 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
14334 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9429 14335 | impl Builder {
|
9430 - | /// Consumes the builder and constructs a [`ConstantQueryStringOutput`](crate::output::ConstantQueryStringOutput).
|
14336 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`ConstantQueryStringOutput`](crate::output::ConstantQueryStringOutput).
|
14337 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
9431 14338 | pub fn build(self) -> crate::output::ConstantQueryStringOutput {
|
9432 14339 | self.build_enforcing_required_and_enum_traits()
|
9433 14340 | }
|
14341 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9434 14342 | fn build_enforcing_required_and_enum_traits(
|
9435 14343 | self,
|
9436 14344 | ) -> crate::output::ConstantQueryStringOutput {
|
9437 - | crate::output::ConstantQueryStringOutput {}
|
14345 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
14346 + | crate::output::ConstantQueryStringOutput {
|
14347 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
14348 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9438 14349 | }
|
14350 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9439 14351 | }
|
14352 + |
|
14353 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
9440 14354 | }
|
9441 - | /// See [`AllQueryStringTypesOutput`](crate::output::AllQueryStringTypesOutput).
|
14355 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`AllQueryStringTypesOutput`](crate::output::AllQueryStringTypesOutput).
|
9442 14356 | pub mod all_query_string_types_output {
|
9443 14357 |
|
14358 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
9444 14359 | impl ::std::convert::From<Builder> for crate::output::AllQueryStringTypesOutput {
|
9445 14360 | fn from(builder: Builder) -> Self {
|
9446 14361 | builder.build()
|
9447 14362 | }
|
9448 14363 | }
|
9449 - | /// A builder for [`AllQueryStringTypesOutput`](crate::output::AllQueryStringTypesOutput).
|
14364 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`AllQueryStringTypesOutput`](crate::output::AllQueryStringTypesOutput).
|
14365 + | /* RustType.kt:516 */
|
9450 14366 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
9451 - | pub struct Builder {}
|
14367 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
14368 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
14369 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9452 14370 | impl Builder {
|
9453 - | /// Consumes the builder and constructs a [`AllQueryStringTypesOutput`](crate::output::AllQueryStringTypesOutput).
|
14371 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`AllQueryStringTypesOutput`](crate::output::AllQueryStringTypesOutput).
|
14372 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
9454 14373 | pub fn build(self) -> crate::output::AllQueryStringTypesOutput {
|
9455 14374 | self.build_enforcing_required_and_enum_traits()
|
9456 14375 | }
|
14376 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9457 14377 | fn build_enforcing_required_and_enum_traits(
|
9458 14378 | self,
|
9459 14379 | ) -> crate::output::AllQueryStringTypesOutput {
|
9460 - | crate::output::AllQueryStringTypesOutput {}
|
14380 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
14381 + | crate::output::AllQueryStringTypesOutput {
|
14382 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
14383 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9461 14384 | }
|
14385 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9462 14386 | }
|
14387 + |
|
14388 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
9463 14389 | }
|
9464 - | /// See [`HttpRequestWithRegexLiteralOutput`](crate::output::HttpRequestWithRegexLiteralOutput).
|
14390 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`HttpRequestWithRegexLiteralOutput`](crate::output::HttpRequestWithRegexLiteralOutput).
|
9465 14391 | pub mod http_request_with_regex_literal_output {
|
9466 14392 |
|
14393 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
9467 14394 | impl ::std::convert::From<Builder> for crate::output::HttpRequestWithRegexLiteralOutput {
|
9468 14395 | fn from(builder: Builder) -> Self {
|
9469 14396 | builder.build()
|
9470 14397 | }
|
9471 14398 | }
|
9472 - | /// A builder for [`HttpRequestWithRegexLiteralOutput`](crate::output::HttpRequestWithRegexLiteralOutput).
|
14399 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`HttpRequestWithRegexLiteralOutput`](crate::output::HttpRequestWithRegexLiteralOutput).
|
14400 + | /* RustType.kt:516 */
|
9473 14401 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
9474 - | pub struct Builder {}
|
14402 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
14403 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
14404 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9475 14405 | impl Builder {
|
9476 - | /// Consumes the builder and constructs a [`HttpRequestWithRegexLiteralOutput`](crate::output::HttpRequestWithRegexLiteralOutput).
|
14406 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`HttpRequestWithRegexLiteralOutput`](crate::output::HttpRequestWithRegexLiteralOutput).
|
14407 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
9477 14408 | pub fn build(self) -> crate::output::HttpRequestWithRegexLiteralOutput {
|
9478 14409 | self.build_enforcing_required_and_enum_traits()
|
9479 14410 | }
|
14411 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9480 14412 | fn build_enforcing_required_and_enum_traits(
|
9481 14413 | self,
|
9482 14414 | ) -> crate::output::HttpRequestWithRegexLiteralOutput {
|
9483 - | crate::output::HttpRequestWithRegexLiteralOutput {}
|
14415 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
14416 + | crate::output::HttpRequestWithRegexLiteralOutput {
|
14417 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
14418 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9484 14419 | }
|
14420 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9485 14421 | }
|
14422 + |
|
14423 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
9486 14424 | }
|
9487 - | /// See [`HttpRequestWithFloatLabelsOutput`](crate::output::HttpRequestWithFloatLabelsOutput).
|
14425 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`HttpRequestWithFloatLabelsOutput`](crate::output::HttpRequestWithFloatLabelsOutput).
|
9488 14426 | pub mod http_request_with_float_labels_output {
|
9489 14427 |
|
14428 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
9490 14429 | impl ::std::convert::From<Builder> for crate::output::HttpRequestWithFloatLabelsOutput {
|
9491 14430 | fn from(builder: Builder) -> Self {
|
9492 14431 | builder.build()
|
9493 14432 | }
|
9494 14433 | }
|
9495 - | /// A builder for [`HttpRequestWithFloatLabelsOutput`](crate::output::HttpRequestWithFloatLabelsOutput).
|
14434 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`HttpRequestWithFloatLabelsOutput`](crate::output::HttpRequestWithFloatLabelsOutput).
|
14435 + | /* RustType.kt:516 */
|
9496 14436 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
9497 - | pub struct Builder {}
|
14437 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
14438 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
14439 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9498 14440 | impl Builder {
|
9499 - | /// Consumes the builder and constructs a [`HttpRequestWithFloatLabelsOutput`](crate::output::HttpRequestWithFloatLabelsOutput).
|
14441 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`HttpRequestWithFloatLabelsOutput`](crate::output::HttpRequestWithFloatLabelsOutput).
|
14442 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
9500 14443 | pub fn build(self) -> crate::output::HttpRequestWithFloatLabelsOutput {
|
9501 14444 | self.build_enforcing_required_and_enum_traits()
|
9502 14445 | }
|
14446 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9503 14447 | fn build_enforcing_required_and_enum_traits(
|
9504 14448 | self,
|
9505 14449 | ) -> crate::output::HttpRequestWithFloatLabelsOutput {
|
9506 - | crate::output::HttpRequestWithFloatLabelsOutput {}
|
14450 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
14451 + | crate::output::HttpRequestWithFloatLabelsOutput {
|
14452 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
14453 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9507 14454 | }
|
14455 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9508 14456 | }
|
14457 + |
|
14458 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
9509 14459 | }
|
9510 - | /// See [`HttpRequestWithGreedyLabelInPathOutput`](crate::output::HttpRequestWithGreedyLabelInPathOutput).
|
14460 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`HttpRequestWithGreedyLabelInPathOutput`](crate::output::HttpRequestWithGreedyLabelInPathOutput).
|
9511 14461 | pub mod http_request_with_greedy_label_in_path_output {
|
9512 14462 |
|
14463 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
9513 14464 | impl ::std::convert::From<Builder> for crate::output::HttpRequestWithGreedyLabelInPathOutput {
|
9514 14465 | fn from(builder: Builder) -> Self {
|
9515 14466 | builder.build()
|
9516 14467 | }
|
9517 14468 | }
|
9518 - | /// A builder for [`HttpRequestWithGreedyLabelInPathOutput`](crate::output::HttpRequestWithGreedyLabelInPathOutput).
|
14469 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`HttpRequestWithGreedyLabelInPathOutput`](crate::output::HttpRequestWithGreedyLabelInPathOutput).
|
14470 + | /* RustType.kt:516 */
|
9519 14471 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
9520 - | pub struct Builder {}
|
14472 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
14473 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
14474 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9521 14475 | impl Builder {
|
9522 - | /// Consumes the builder and constructs a [`HttpRequestWithGreedyLabelInPathOutput`](crate::output::HttpRequestWithGreedyLabelInPathOutput).
|
14476 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`HttpRequestWithGreedyLabelInPathOutput`](crate::output::HttpRequestWithGreedyLabelInPathOutput).
|
14477 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
9523 14478 | pub fn build(self) -> crate::output::HttpRequestWithGreedyLabelInPathOutput {
|
9524 14479 | self.build_enforcing_required_and_enum_traits()
|
9525 14480 | }
|
14481 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9526 14482 | fn build_enforcing_required_and_enum_traits(
|
9527 14483 | self,
|
9528 14484 | ) -> crate::output::HttpRequestWithGreedyLabelInPathOutput {
|
9529 - | crate::output::HttpRequestWithGreedyLabelInPathOutput {}
|
14485 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
14486 + | crate::output::HttpRequestWithGreedyLabelInPathOutput {
|
14487 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
14488 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9530 14489 | }
|
14490 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9531 14491 | }
|
14492 + |
|
14493 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
9532 14494 | }
|
9533 - | /// See [`HttpRequestWithLabelsAndTimestampFormatOutput`](crate::output::HttpRequestWithLabelsAndTimestampFormatOutput).
|
14495 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`HttpRequestWithLabelsAndTimestampFormatOutput`](crate::output::HttpRequestWithLabelsAndTimestampFormatOutput).
|
9534 14496 | pub mod http_request_with_labels_and_timestamp_format_output {
|
9535 14497 |
|
14498 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
9536 14499 | impl ::std::convert::From<Builder>
|
9537 14500 | for crate::output::HttpRequestWithLabelsAndTimestampFormatOutput
|
9538 14501 | {
|
9539 14502 | fn from(builder: Builder) -> Self {
|
9540 14503 | builder.build()
|
9541 14504 | }
|
9542 14505 | }
|
9543 - | /// A builder for [`HttpRequestWithLabelsAndTimestampFormatOutput`](crate::output::HttpRequestWithLabelsAndTimestampFormatOutput).
|
14506 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`HttpRequestWithLabelsAndTimestampFormatOutput`](crate::output::HttpRequestWithLabelsAndTimestampFormatOutput).
|
14507 + | /* RustType.kt:516 */
|
9544 14508 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
9545 - | pub struct Builder {}
|
14509 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
14510 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
14511 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9546 14512 | impl Builder {
|
9547 - | /// Consumes the builder and constructs a [`HttpRequestWithLabelsAndTimestampFormatOutput`](crate::output::HttpRequestWithLabelsAndTimestampFormatOutput).
|
14513 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`HttpRequestWithLabelsAndTimestampFormatOutput`](crate::output::HttpRequestWithLabelsAndTimestampFormatOutput).
|
14514 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
9548 14515 | pub fn build(self) -> crate::output::HttpRequestWithLabelsAndTimestampFormatOutput {
|
9549 14516 | self.build_enforcing_required_and_enum_traits()
|
9550 14517 | }
|
14518 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9551 14519 | fn build_enforcing_required_and_enum_traits(
|
9552 14520 | self,
|
9553 14521 | ) -> crate::output::HttpRequestWithLabelsAndTimestampFormatOutput {
|
9554 - | crate::output::HttpRequestWithLabelsAndTimestampFormatOutput {}
|
14522 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
14523 + | crate::output::HttpRequestWithLabelsAndTimestampFormatOutput {
|
14524 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
14525 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9555 14526 | }
|
14527 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9556 14528 | }
|
14529 + |
|
14530 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
9557 14531 | }
|
9558 - | /// See [`HttpRequestWithLabelsOutput`](crate::output::HttpRequestWithLabelsOutput).
|
14532 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`HttpRequestWithLabelsOutput`](crate::output::HttpRequestWithLabelsOutput).
|
9559 14533 | pub mod http_request_with_labels_output {
|
9560 14534 |
|
14535 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
9561 14536 | impl ::std::convert::From<Builder> for crate::output::HttpRequestWithLabelsOutput {
|
9562 14537 | fn from(builder: Builder) -> Self {
|
9563 14538 | builder.build()
|
9564 14539 | }
|
9565 14540 | }
|
9566 - | /// A builder for [`HttpRequestWithLabelsOutput`](crate::output::HttpRequestWithLabelsOutput).
|
14541 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`HttpRequestWithLabelsOutput`](crate::output::HttpRequestWithLabelsOutput).
|
14542 + | /* RustType.kt:516 */
|
9567 14543 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
9568 - | pub struct Builder {}
|
14544 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
14545 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
14546 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9569 14547 | impl Builder {
|
9570 - | /// Consumes the builder and constructs a [`HttpRequestWithLabelsOutput`](crate::output::HttpRequestWithLabelsOutput).
|
14548 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`HttpRequestWithLabelsOutput`](crate::output::HttpRequestWithLabelsOutput).
|
14549 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
9571 14550 | pub fn build(self) -> crate::output::HttpRequestWithLabelsOutput {
|
9572 14551 | self.build_enforcing_required_and_enum_traits()
|
9573 14552 | }
|
14553 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9574 14554 | fn build_enforcing_required_and_enum_traits(
|
9575 14555 | self,
|
9576 14556 | ) -> crate::output::HttpRequestWithLabelsOutput {
|
9577 - | crate::output::HttpRequestWithLabelsOutput {}
|
14557 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
14558 + | crate::output::HttpRequestWithLabelsOutput {
|
14559 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
14560 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9578 14561 | }
|
14562 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9579 14563 | }
|
14564 + |
|
14565 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
9580 14566 | }
|
9581 - | /// See [`MediaTypeHeaderOutput`](crate::output::MediaTypeHeaderOutput).
|
14567 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`MediaTypeHeaderOutput`](crate::output::MediaTypeHeaderOutput).
|
9582 14568 | pub mod media_type_header_output {
|
9583 14569 |
|
14570 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
9584 14571 | impl ::std::convert::From<Builder> for crate::output::MediaTypeHeaderOutput {
|
9585 14572 | fn from(builder: Builder) -> Self {
|
9586 14573 | builder.build()
|
9587 14574 | }
|
9588 14575 | }
|
9589 - | /// A builder for [`MediaTypeHeaderOutput`](crate::output::MediaTypeHeaderOutput).
|
14576 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`MediaTypeHeaderOutput`](crate::output::MediaTypeHeaderOutput).
|
14577 + | /* RustType.kt:516 */
|
9590 14578 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
14579 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
9591 14580 | pub struct Builder {
|
14581 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9592 14582 | pub(crate) json: ::std::option::Option<::std::string::String>,
|
14583 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
9593 14584 | }
|
14585 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9594 14586 | impl Builder {
|
14587 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9595 14588 | #[allow(missing_docs)] // documentation missing in model
|
14589 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9596 14590 | pub fn json(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
|
9597 - | self.json = input;
|
14591 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
14592 + | self.json =
|
14593 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
14594 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9598 14595 | self
|
14596 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9599 14597 | }
|
9600 - | /// Consumes the builder and constructs a [`MediaTypeHeaderOutput`](crate::output::MediaTypeHeaderOutput).
|
14598 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`MediaTypeHeaderOutput`](crate::output::MediaTypeHeaderOutput).
|
14599 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
9601 14600 | pub fn build(self) -> crate::output::MediaTypeHeaderOutput {
|
9602 14601 | self.build_enforcing_required_and_enum_traits()
|
9603 14602 | }
|
14603 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9604 14604 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::MediaTypeHeaderOutput {
|
9605 - | crate::output::MediaTypeHeaderOutput { json: self.json }
|
14605 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
14606 + | crate::output::MediaTypeHeaderOutput {
|
14607 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
14608 + | json: self.json,
|
14609 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
14610 + | }
|
14611 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9606 14612 | }
|
14613 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9607 14614 | }
|
14615 + |
|
14616 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
9608 14617 | }
|
9609 - | /// See [`TimestampFormatHeadersOutput`](crate::output::TimestampFormatHeadersOutput).
|
14618 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`TimestampFormatHeadersOutput`](crate::output::TimestampFormatHeadersOutput).
|
9610 14619 | pub mod timestamp_format_headers_output {
|
9611 14620 |
|
14621 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
9612 14622 | impl ::std::convert::From<Builder> for crate::output::TimestampFormatHeadersOutput {
|
9613 14623 | fn from(builder: Builder) -> Self {
|
9614 14624 | builder.build()
|
9615 14625 | }
|
9616 14626 | }
|
9617 - | /// A builder for [`TimestampFormatHeadersOutput`](crate::output::TimestampFormatHeadersOutput).
|
14627 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`TimestampFormatHeadersOutput`](crate::output::TimestampFormatHeadersOutput).
|
14628 + | /* RustType.kt:516 */
|
9618 14629 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
14630 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
9619 14631 | pub struct Builder {
|
14632 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9620 14633 | pub(crate) member_epoch_seconds:
|
9621 14634 | ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
14635 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9622 14636 | pub(crate) member_http_date:
|
9623 14637 | ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
14638 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9624 14639 | pub(crate) member_date_time:
|
9625 14640 | ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
14641 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9626 14642 | pub(crate) default_format:
|
9627 14643 | ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
14644 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9628 14645 | pub(crate) target_epoch_seconds:
|
9629 14646 | ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
14647 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9630 14648 | pub(crate) target_http_date:
|
9631 14649 | ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
14650 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9632 14651 | pub(crate) target_date_time:
|
9633 14652 | ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
14653 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
9634 14654 | }
|
14655 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9635 14656 | impl Builder {
|
14657 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9636 14658 | #[allow(missing_docs)] // documentation missing in model
|
14659 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9637 14660 | pub fn member_epoch_seconds(
|
9638 14661 | mut self,
|
9639 14662 | input: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
9640 14663 | ) -> Self {
|
9641 - | self.member_epoch_seconds = input;
|
14664 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
14665 + | self.member_epoch_seconds =
|
14666 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
14667 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9642 14668 | self
|
14669 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9643 14670 | }
|
14671 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9644 14672 | #[allow(missing_docs)] // documentation missing in model
|
14673 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9645 14674 | pub fn member_http_date(
|
9646 14675 | mut self,
|
9647 14676 | input: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
9648 14677 | ) -> Self {
|
9649 - | self.member_http_date = input;
|
14678 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
14679 + | self.member_http_date =
|
14680 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
14681 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9650 14682 | self
|
14683 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9651 14684 | }
|
14685 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9652 14686 | #[allow(missing_docs)] // documentation missing in model
|
14687 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9653 14688 | pub fn member_date_time(
|
9654 14689 | mut self,
|
9655 14690 | input: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
9656 14691 | ) -> Self {
|
9657 - | self.member_date_time = input;
|
14692 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
14693 + | self.member_date_time =
|
14694 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
14695 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9658 14696 | self
|
14697 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9659 14698 | }
|
14699 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9660 14700 | #[allow(missing_docs)] // documentation missing in model
|
14701 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9661 14702 | pub fn default_format(
|
9662 14703 | mut self,
|
9663 14704 | input: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
9664 14705 | ) -> Self {
|
9665 - | self.default_format = input;
|
14706 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
14707 + | self.default_format =
|
14708 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
14709 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9666 14710 | self
|
14711 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9667 14712 | }
|
14713 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9668 14714 | #[allow(missing_docs)] // documentation missing in model
|
14715 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9669 14716 | pub fn target_epoch_seconds(
|
9670 14717 | mut self,
|
9671 14718 | input: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
9672 14719 | ) -> Self {
|
9673 - | self.target_epoch_seconds = input;
|
14720 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
14721 + | self.target_epoch_seconds =
|
14722 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
14723 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9674 14724 | self
|
14725 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9675 14726 | }
|
14727 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9676 14728 | #[allow(missing_docs)] // documentation missing in model
|
14729 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9677 14730 | pub fn target_http_date(
|
9678 14731 | mut self,
|
9679 14732 | input: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
9680 14733 | ) -> Self {
|
9681 - | self.target_http_date = input;
|
14734 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
14735 + | self.target_http_date =
|
14736 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
14737 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9682 14738 | self
|
14739 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9683 14740 | }
|
14741 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9684 14742 | #[allow(missing_docs)] // documentation missing in model
|
14743 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9685 14744 | pub fn target_date_time(
|
9686 14745 | mut self,
|
9687 14746 | input: ::std::option::Option<::aws_smithy_http_server_python::types::DateTime>,
|
9688 14747 | ) -> Self {
|
9689 - | self.target_date_time = input;
|
14748 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
14749 + | self.target_date_time =
|
14750 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
14751 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9690 14752 | self
|
14753 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9691 14754 | }
|
9692 - | /// Consumes the builder and constructs a [`TimestampFormatHeadersOutput`](crate::output::TimestampFormatHeadersOutput).
|
14755 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`TimestampFormatHeadersOutput`](crate::output::TimestampFormatHeadersOutput).
|
14756 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
9693 14757 | pub fn build(self) -> crate::output::TimestampFormatHeadersOutput {
|
9694 14758 | self.build_enforcing_required_and_enum_traits()
|
9695 14759 | }
|
14760 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9696 14761 | fn build_enforcing_required_and_enum_traits(
|
9697 14762 | self,
|
9698 14763 | ) -> crate::output::TimestampFormatHeadersOutput {
|
14764 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
9699 14765 | crate::output::TimestampFormatHeadersOutput {
|
14766 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9700 14767 | member_epoch_seconds: self.member_epoch_seconds,
|
14768 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9701 14769 | member_http_date: self.member_http_date,
|
14770 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9702 14771 | member_date_time: self.member_date_time,
|
14772 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9703 14773 | default_format: self.default_format,
|
14774 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9704 14775 | target_epoch_seconds: self.target_epoch_seconds,
|
14776 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9705 14777 | target_http_date: self.target_http_date,
|
14778 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9706 14779 | target_date_time: self.target_date_time,
|
14780 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
9707 14781 | }
|
14782 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9708 14783 | }
|
14784 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9709 14785 | }
|
14786 + |
|
14787 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
9710 14788 | }
|
9711 - | /// See [`NullAndEmptyHeadersServerOutput`](crate::output::NullAndEmptyHeadersServerOutput).
|
14789 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`NullAndEmptyHeadersServerOutput`](crate::output::NullAndEmptyHeadersServerOutput).
|
9712 14790 | pub mod null_and_empty_headers_server_output {
|
9713 14791 |
|
14792 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
9714 14793 | impl ::std::convert::From<Builder> for crate::output::NullAndEmptyHeadersServerOutput {
|
9715 14794 | fn from(builder: Builder) -> Self {
|
9716 14795 | builder.build()
|
9717 14796 | }
|
9718 14797 | }
|
9719 - | /// A builder for [`NullAndEmptyHeadersServerOutput`](crate::output::NullAndEmptyHeadersServerOutput).
|
14798 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`NullAndEmptyHeadersServerOutput`](crate::output::NullAndEmptyHeadersServerOutput).
|
14799 + | /* RustType.kt:516 */
|
9720 14800 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
14801 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
9721 14802 | pub struct Builder {
|
14803 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9722 14804 | pub(crate) a: ::std::option::Option<::std::string::String>,
|
14805 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9723 14806 | pub(crate) b: ::std::option::Option<::std::string::String>,
|
14807 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9724 14808 | pub(crate) c: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
14809 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
9725 14810 | }
|
14811 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9726 14812 | impl Builder {
|
14813 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9727 14814 | #[allow(missing_docs)] // documentation missing in model
|
14815 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9728 14816 | pub fn a(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
|
9729 - | self.a = input;
|
14817 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
14818 + | self.a =
|
14819 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
14820 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9730 14821 | self
|
14822 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9731 14823 | }
|
14824 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9732 14825 | #[allow(missing_docs)] // documentation missing in model
|
14826 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9733 14827 | pub fn b(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
|
9734 - | self.b = input;
|
14828 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
14829 + | self.b =
|
14830 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
14831 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9735 14832 | self
|
14833 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9736 14834 | }
|
14835 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9737 14836 | #[allow(missing_docs)] // documentation missing in model
|
14837 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9738 14838 | pub fn c(
|
9739 14839 | mut self,
|
9740 14840 | input: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
9741 14841 | ) -> Self {
|
9742 - | self.c = input;
|
14842 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
14843 + | self.c =
|
14844 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
14845 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9743 14846 | self
|
14847 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9744 14848 | }
|
9745 - | /// Consumes the builder and constructs a [`NullAndEmptyHeadersServerOutput`](crate::output::NullAndEmptyHeadersServerOutput).
|
14849 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`NullAndEmptyHeadersServerOutput`](crate::output::NullAndEmptyHeadersServerOutput).
|
14850 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
9746 14851 | pub fn build(self) -> crate::output::NullAndEmptyHeadersServerOutput {
|
9747 14852 | self.build_enforcing_required_and_enum_traits()
|
9748 14853 | }
|
14854 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9749 14855 | fn build_enforcing_required_and_enum_traits(
|
9750 14856 | self,
|
9751 14857 | ) -> crate::output::NullAndEmptyHeadersServerOutput {
|
14858 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
9752 14859 | crate::output::NullAndEmptyHeadersServerOutput {
|
14860 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9753 14861 | a: self.a,
|
14862 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9754 14863 | b: self.b,
|
14864 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9755 14865 | c: self.c,
|
14866 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
9756 14867 | }
|
14868 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9757 14869 | }
|
14870 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9758 14871 | }
|
14872 + |
|
14873 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
9759 14874 | }
|
9760 - | /// See [`NullAndEmptyHeadersClientOutput`](crate::output::NullAndEmptyHeadersClientOutput).
|
14875 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`NullAndEmptyHeadersClientOutput`](crate::output::NullAndEmptyHeadersClientOutput).
|
9761 14876 | pub mod null_and_empty_headers_client_output {
|
9762 14877 |
|
14878 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
9763 14879 | impl ::std::convert::From<Builder> for crate::output::NullAndEmptyHeadersClientOutput {
|
9764 14880 | fn from(builder: Builder) -> Self {
|
9765 14881 | builder.build()
|
9766 14882 | }
|
9767 14883 | }
|
9768 - | /// A builder for [`NullAndEmptyHeadersClientOutput`](crate::output::NullAndEmptyHeadersClientOutput).
|
14884 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`NullAndEmptyHeadersClientOutput`](crate::output::NullAndEmptyHeadersClientOutput).
|
14885 + | /* RustType.kt:516 */
|
9769 14886 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
14887 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
9770 14888 | pub struct Builder {
|
14889 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9771 14890 | pub(crate) a: ::std::option::Option<::std::string::String>,
|
14891 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9772 14892 | pub(crate) b: ::std::option::Option<::std::string::String>,
|
14893 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9773 14894 | pub(crate) c: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
14895 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
9774 14896 | }
|
14897 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9775 14898 | impl Builder {
|
14899 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9776 14900 | #[allow(missing_docs)] // documentation missing in model
|
14901 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9777 14902 | pub fn a(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
|
9778 - | self.a = input;
|
14903 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
14904 + | self.a =
|
14905 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
14906 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9779 14907 | self
|
14908 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9780 14909 | }
|
14910 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9781 14911 | #[allow(missing_docs)] // documentation missing in model
|
14912 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9782 14913 | pub fn b(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
|
9783 - | self.b = input;
|
14914 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
14915 + | self.b =
|
14916 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
14917 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9784 14918 | self
|
14919 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9785 14920 | }
|
14921 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9786 14922 | #[allow(missing_docs)] // documentation missing in model
|
14923 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9787 14924 | pub fn c(
|
9788 14925 | mut self,
|
9789 14926 | input: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
9790 14927 | ) -> Self {
|
9791 - | self.c = input;
|
14928 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
14929 + | self.c =
|
14930 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
14931 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9792 14932 | self
|
14933 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9793 14934 | }
|
9794 - | /// Consumes the builder and constructs a [`NullAndEmptyHeadersClientOutput`](crate::output::NullAndEmptyHeadersClientOutput).
|
14935 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`NullAndEmptyHeadersClientOutput`](crate::output::NullAndEmptyHeadersClientOutput).
|
14936 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
9795 14937 | pub fn build(self) -> crate::output::NullAndEmptyHeadersClientOutput {
|
9796 14938 | self.build_enforcing_required_and_enum_traits()
|
9797 14939 | }
|
14940 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9798 14941 | fn build_enforcing_required_and_enum_traits(
|
9799 14942 | self,
|
9800 14943 | ) -> crate::output::NullAndEmptyHeadersClientOutput {
|
14944 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
9801 14945 | crate::output::NullAndEmptyHeadersClientOutput {
|
14946 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9802 14947 | a: self.a,
|
14948 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9803 14949 | b: self.b,
|
14950 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9804 14951 | c: self.c,
|
14952 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
9805 14953 | }
|
14954 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9806 14955 | }
|
14956 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9807 14957 | }
|
14958 + |
|
14959 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
9808 14960 | }
|
9809 - | /// See [`InputAndOutputWithHeadersOutput`](crate::output::InputAndOutputWithHeadersOutput).
|
14961 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`InputAndOutputWithHeadersOutput`](crate::output::InputAndOutputWithHeadersOutput).
|
9810 14962 | pub mod input_and_output_with_headers_output {
|
9811 14963 |
|
14964 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
9812 14965 | impl ::std::convert::From<Builder> for crate::output::InputAndOutputWithHeadersOutput {
|
9813 14966 | fn from(builder: Builder) -> Self {
|
9814 14967 | builder.build()
|
9815 14968 | }
|
9816 14969 | }
|
9817 - | /// A builder for [`InputAndOutputWithHeadersOutput`](crate::output::InputAndOutputWithHeadersOutput).
|
14970 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`InputAndOutputWithHeadersOutput`](crate::output::InputAndOutputWithHeadersOutput).
|
14971 + | /* RustType.kt:516 */
|
9818 14972 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
14973 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
9819 14974 | pub struct Builder {
|
14975 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9820 14976 | pub(crate) header_string: ::std::option::Option<::std::string::String>,
|
14977 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9821 14978 | pub(crate) header_byte: ::std::option::Option<i8>,
|
14979 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9822 14980 | pub(crate) header_short: ::std::option::Option<i16>,
|
14981 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9823 14982 | pub(crate) header_integer: ::std::option::Option<i32>,
|
14983 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9824 14984 | pub(crate) header_long: ::std::option::Option<i64>,
|
14985 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9825 14986 | pub(crate) header_float: ::std::option::Option<f32>,
|
14987 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9826 14988 | pub(crate) header_double: ::std::option::Option<f64>,
|
14989 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9827 14990 | pub(crate) header_true_bool: ::std::option::Option<bool>,
|
14991 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9828 14992 | pub(crate) header_false_bool: ::std::option::Option<bool>,
|
14993 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9829 14994 | pub(crate) header_string_list:
|
9830 14995 | ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
14996 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9831 14997 | pub(crate) header_string_set: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
14998 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9832 14999 | pub(crate) header_integer_list: ::std::option::Option<::std::vec::Vec<i32>>,
|
15000 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9833 15001 | pub(crate) header_boolean_list: ::std::option::Option<::std::vec::Vec<bool>>,
|
15002 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9834 15003 | pub(crate) header_timestamp_list: ::std::option::Option<
|
9835 15004 | ::std::vec::Vec<::aws_smithy_http_server_python::types::DateTime>,
|
9836 15005 | >,
|
15006 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9837 15007 | pub(crate) header_enum: ::std::option::Option<crate::model::FooEnum>,
|
15008 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9838 15009 | pub(crate) header_enum_list: ::std::option::Option<::std::vec::Vec<crate::model::FooEnum>>,
|
15010 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9839 15011 | pub(crate) header_integer_enum: ::std::option::Option<i32>,
|
15012 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
9840 15013 | pub(crate) header_integer_enum_list: ::std::option::Option<::std::vec::Vec<i32>>,
|
15014 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
9841 15015 | }
|
15016 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9842 15017 | impl Builder {
|
15018 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9843 15019 | #[allow(missing_docs)] // documentation missing in model
|
15020 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9844 15021 | pub fn header_string(
|
9845 15022 | mut self,
|
9846 15023 | input: ::std::option::Option<::std::string::String>,
|
9847 15024 | ) -> Self {
|
9848 - | self.header_string = input;
|
15025 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
15026 + | self.header_string =
|
15027 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
15028 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9849 15029 | self
|
15030 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9850 15031 | }
|
15032 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9851 15033 | #[allow(missing_docs)] // documentation missing in model
|
15034 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9852 15035 | pub fn header_byte(mut self, input: ::std::option::Option<i8>) -> Self {
|
9853 - | self.header_byte = input;
|
15036 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
15037 + | self.header_byte =
|
15038 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
15039 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9854 15040 | self
|
15041 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9855 15042 | }
|
15043 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9856 15044 | #[allow(missing_docs)] // documentation missing in model
|
15045 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9857 15046 | pub fn header_short(mut self, input: ::std::option::Option<i16>) -> Self {
|
9858 - | self.header_short = input;
|
15047 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
15048 + | self.header_short =
|
15049 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
15050 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9859 15051 | self
|
15052 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9860 15053 | }
|
15054 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9861 15055 | #[allow(missing_docs)] // documentation missing in model
|
15056 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9862 15057 | pub fn header_integer(mut self, input: ::std::option::Option<i32>) -> Self {
|
9863 - | self.header_integer = input;
|
15058 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
15059 + | self.header_integer =
|
15060 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
15061 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9864 15062 | self
|
15063 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9865 15064 | }
|
15065 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9866 15066 | #[allow(missing_docs)] // documentation missing in model
|
15067 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9867 15068 | pub fn header_long(mut self, input: ::std::option::Option<i64>) -> Self {
|
9868 - | self.header_long = input;
|
15069 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
15070 + | self.header_long =
|
15071 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
15072 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9869 15073 | self
|
15074 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9870 15075 | }
|
15076 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9871 15077 | #[allow(missing_docs)] // documentation missing in model
|
15078 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9872 15079 | pub fn header_float(mut self, input: ::std::option::Option<f32>) -> Self {
|
9873 - | self.header_float = input;
|
15080 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
15081 + | self.header_float =
|
15082 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
15083 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9874 15084 | self
|
15085 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9875 15086 | }
|
15087 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9876 15088 | #[allow(missing_docs)] // documentation missing in model
|
15089 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9877 15090 | pub fn header_double(mut self, input: ::std::option::Option<f64>) -> Self {
|
9878 - | self.header_double = input;
|
15091 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
15092 + | self.header_double =
|
15093 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
15094 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9879 15095 | self
|
15096 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9880 15097 | }
|
15098 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9881 15099 | #[allow(missing_docs)] // documentation missing in model
|
15100 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9882 15101 | pub fn header_true_bool(mut self, input: ::std::option::Option<bool>) -> Self {
|
9883 - | self.header_true_bool = input;
|
15102 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
15103 + | self.header_true_bool =
|
15104 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
15105 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9884 15106 | self
|
15107 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9885 15108 | }
|
15109 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9886 15110 | #[allow(missing_docs)] // documentation missing in model
|
15111 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9887 15112 | pub fn header_false_bool(mut self, input: ::std::option::Option<bool>) -> Self {
|
9888 - | self.header_false_bool = input;
|
15113 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
15114 + | self.header_false_bool =
|
15115 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
15116 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9889 15117 | self
|
15118 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9890 15119 | }
|
15120 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9891 15121 | #[allow(missing_docs)] // documentation missing in model
|
15122 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9892 15123 | pub fn header_string_list(
|
9893 15124 | mut self,
|
9894 15125 | input: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
9895 15126 | ) -> Self {
|
9896 - | self.header_string_list = input;
|
15127 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
15128 + | self.header_string_list =
|
15129 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
15130 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9897 15131 | self
|
15132 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9898 15133 | }
|
15134 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9899 15135 | #[allow(missing_docs)] // documentation missing in model
|
15136 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9900 15137 | pub fn header_string_set(
|
9901 15138 | mut self,
|
9902 15139 | input: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
|
9903 15140 | ) -> Self {
|
9904 - | self.header_string_set = input;
|
15141 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
15142 + | self.header_string_set =
|
15143 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
15144 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9905 15145 | self
|
15146 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9906 15147 | }
|
15148 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9907 15149 | #[allow(missing_docs)] // documentation missing in model
|
15150 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9908 15151 | pub fn header_integer_list(
|
9909 15152 | mut self,
|
9910 15153 | input: ::std::option::Option<::std::vec::Vec<i32>>,
|
9911 15154 | ) -> Self {
|
9912 - | self.header_integer_list = input;
|
15155 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
15156 + | self.header_integer_list =
|
15157 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
15158 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9913 15159 | self
|
15160 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9914 15161 | }
|
15162 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9915 15163 | #[allow(missing_docs)] // documentation missing in model
|
15164 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9916 15165 | pub fn header_boolean_list(
|
9917 15166 | mut self,
|
9918 15167 | input: ::std::option::Option<::std::vec::Vec<bool>>,
|
9919 15168 | ) -> Self {
|
9920 - | self.header_boolean_list = input;
|
15169 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
15170 + | self.header_boolean_list =
|
15171 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
15172 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9921 15173 | self
|
15174 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9922 15175 | }
|
15176 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9923 15177 | #[allow(missing_docs)] // documentation missing in model
|
15178 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9924 15179 | pub fn header_timestamp_list(
|
9925 15180 | mut self,
|
9926 15181 | input: ::std::option::Option<
|
9927 15182 | ::std::vec::Vec<::aws_smithy_http_server_python::types::DateTime>,
|
9928 15183 | >,
|
9929 15184 | ) -> Self {
|
9930 - | self.header_timestamp_list = input;
|
15185 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
15186 + | self.header_timestamp_list =
|
15187 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
15188 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9931 15189 | self
|
15190 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9932 15191 | }
|
15192 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9933 15193 | #[allow(missing_docs)] // documentation missing in model
|
15194 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9934 15195 | pub fn header_enum(mut self, input: ::std::option::Option<crate::model::FooEnum>) -> Self {
|
9935 - | self.header_enum = input;
|
15196 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
15197 + | self.header_enum =
|
15198 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
15199 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9936 15200 | self
|
15201 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9937 15202 | }
|
15203 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9938 15204 | #[allow(missing_docs)] // documentation missing in model
|
15205 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9939 15206 | pub fn header_enum_list(
|
9940 15207 | mut self,
|
9941 15208 | input: ::std::option::Option<::std::vec::Vec<crate::model::FooEnum>>,
|
9942 15209 | ) -> Self {
|
9943 - | self.header_enum_list = input;
|
15210 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
15211 + | self.header_enum_list =
|
15212 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
15213 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9944 15214 | self
|
15215 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9945 15216 | }
|
15217 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9946 15218 | #[allow(missing_docs)] // documentation missing in model
|
15219 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9947 15220 | pub fn header_integer_enum(mut self, input: ::std::option::Option<i32>) -> Self {
|
9948 - | self.header_integer_enum = input;
|
15221 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
15222 + | self.header_integer_enum =
|
15223 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
15224 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9949 15225 | self
|
15226 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9950 15227 | }
|
15228 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
9951 15229 | #[allow(missing_docs)] // documentation missing in model
|
15230 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9952 15231 | pub fn header_integer_enum_list(
|
9953 15232 | mut self,
|
9954 15233 | input: ::std::option::Option<::std::vec::Vec<i32>>,
|
9955 15234 | ) -> Self {
|
9956 - | self.header_integer_enum_list = input;
|
15235 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
15236 + | self.header_integer_enum_list =
|
15237 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
15238 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
9957 15239 | self
|
15240 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
9958 15241 | }
|
9959 - | /// Consumes the builder and constructs a [`InputAndOutputWithHeadersOutput`](crate::output::InputAndOutputWithHeadersOutput).
|
15242 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`InputAndOutputWithHeadersOutput`](crate::output::InputAndOutputWithHeadersOutput).
|
15243 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
9960 15244 | pub fn build(self) -> crate::output::InputAndOutputWithHeadersOutput {
|
9961 15245 | self.build_enforcing_required_and_enum_traits()
|
9962 15246 | }
|
15247 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9963 15248 | fn build_enforcing_required_and_enum_traits(
|
9964 15249 | self,
|
9965 15250 | ) -> crate::output::InputAndOutputWithHeadersOutput {
|
15251 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
9966 15252 | crate::output::InputAndOutputWithHeadersOutput {
|
15253 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9967 15254 | header_string: self.header_string,
|
15255 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9968 15256 | header_byte: self.header_byte,
|
15257 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9969 15258 | header_short: self.header_short,
|
15259 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9970 15260 | header_integer: self.header_integer,
|
15261 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9971 15262 | header_long: self.header_long,
|
15263 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9972 15264 | header_float: self.header_float,
|
15265 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9973 15266 | header_double: self.header_double,
|
15267 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9974 15268 | header_true_bool: self.header_true_bool,
|
15269 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9975 15270 | header_false_bool: self.header_false_bool,
|
15271 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9976 15272 | header_string_list: self.header_string_list,
|
15273 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9977 15274 | header_string_set: self.header_string_set,
|
15275 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9978 15276 | header_integer_list: self.header_integer_list,
|
15277 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9979 15278 | header_boolean_list: self.header_boolean_list,
|
15279 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9980 15280 | header_timestamp_list: self.header_timestamp_list,
|
15281 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9981 15282 | header_enum: self.header_enum,
|
15283 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9982 15284 | header_enum_list: self.header_enum_list,
|
15285 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9983 15286 | header_integer_enum: self.header_integer_enum,
|
15287 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
9984 15288 | header_integer_enum_list: self.header_integer_enum_list,
|
15289 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
9985 15290 | }
|
15291 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
9986 15292 | }
|
15293 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
9987 15294 | }
|
15295 + |
|
15296 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
9988 15297 | }
|
9989 - | /// See [`UnitInputAndOutputOutput`](crate::output::UnitInputAndOutputOutput).
|
15298 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`UnitInputAndOutputOutput`](crate::output::UnitInputAndOutputOutput).
|
9990 15299 | pub mod unit_input_and_output_output {
|
9991 15300 |
|
15301 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
9992 15302 | impl ::std::convert::From<Builder> for crate::output::UnitInputAndOutputOutput {
|
9993 15303 | fn from(builder: Builder) -> Self {
|
9994 15304 | builder.build()
|
9995 15305 | }
|
9996 15306 | }
|
9997 - | /// A builder for [`UnitInputAndOutputOutput`](crate::output::UnitInputAndOutputOutput).
|
15307 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`UnitInputAndOutputOutput`](crate::output::UnitInputAndOutputOutput).
|
15308 + | /* RustType.kt:516 */
|
9998 15309 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
9999 - | pub struct Builder {}
|
15310 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
15311 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
15312 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
10000 15313 | impl Builder {
|
10001 - | /// Consumes the builder and constructs a [`UnitInputAndOutputOutput`](crate::output::UnitInputAndOutputOutput).
|
15314 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`UnitInputAndOutputOutput`](crate::output::UnitInputAndOutputOutput).
|
15315 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
10002 15316 | pub fn build(self) -> crate::output::UnitInputAndOutputOutput {
|
10003 15317 | self.build_enforcing_required_and_enum_traits()
|
10004 15318 | }
|
15319 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
10005 15320 | fn build_enforcing_required_and_enum_traits(
|
10006 15321 | self,
|
10007 15322 | ) -> crate::output::UnitInputAndOutputOutput {
|
10008 - | crate::output::UnitInputAndOutputOutput {}
|
15323 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
15324 + | crate::output::UnitInputAndOutputOutput {
|
15325 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
15326 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
10009 15327 | }
|
15328 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
10010 15329 | }
|
15330 + |
|
15331 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
10011 15332 | }
|
10012 - | /// See [`EmptyInputAndEmptyOutputOutput`](crate::output::EmptyInputAndEmptyOutputOutput).
|
15333 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`EmptyInputAndEmptyOutputOutput`](crate::output::EmptyInputAndEmptyOutputOutput).
|
10013 15334 | pub mod empty_input_and_empty_output_output {
|
10014 15335 |
|
15336 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
10015 15337 | impl ::std::convert::From<Builder> for crate::output::EmptyInputAndEmptyOutputOutput {
|
10016 15338 | fn from(builder: Builder) -> Self {
|
10017 15339 | builder.build()
|
10018 15340 | }
|
10019 15341 | }
|
10020 - | /// A builder for [`EmptyInputAndEmptyOutputOutput`](crate::output::EmptyInputAndEmptyOutputOutput).
|
15342 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`EmptyInputAndEmptyOutputOutput`](crate::output::EmptyInputAndEmptyOutputOutput).
|
15343 + | /* RustType.kt:516 */
|
10021 15344 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
10022 - | pub struct Builder {}
|
15345 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
15346 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
15347 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
10023 15348 | impl Builder {
|
10024 - | /// Consumes the builder and constructs a [`EmptyInputAndEmptyOutputOutput`](crate::output::EmptyInputAndEmptyOutputOutput).
|
15349 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`EmptyInputAndEmptyOutputOutput`](crate::output::EmptyInputAndEmptyOutputOutput).
|
15350 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
10025 15351 | pub fn build(self) -> crate::output::EmptyInputAndEmptyOutputOutput {
|
10026 15352 | self.build_enforcing_required_and_enum_traits()
|
10027 15353 | }
|
15354 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
10028 15355 | fn build_enforcing_required_and_enum_traits(
|
10029 15356 | self,
|
10030 15357 | ) -> crate::output::EmptyInputAndEmptyOutputOutput {
|
10031 - | crate::output::EmptyInputAndEmptyOutputOutput {}
|
15358 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
15359 + | crate::output::EmptyInputAndEmptyOutputOutput {
|
15360 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
15361 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
10032 15362 | }
|
15363 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
10033 15364 | }
|
15365 + |
|
15366 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
10034 15367 | }
|
10035 - | /// See [`NoInputAndOutputOutput`](crate::output::NoInputAndOutputOutput).
|
15368 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`NoInputAndOutputOutput`](crate::output::NoInputAndOutputOutput).
|
10036 15369 | pub mod no_input_and_output_output {
|
10037 15370 |
|
15371 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
10038 15372 | impl ::std::convert::From<Builder> for crate::output::NoInputAndOutputOutput {
|
10039 15373 | fn from(builder: Builder) -> Self {
|
10040 15374 | builder.build()
|
10041 15375 | }
|
10042 15376 | }
|
10043 - | /// A builder for [`NoInputAndOutputOutput`](crate::output::NoInputAndOutputOutput).
|
15377 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`NoInputAndOutputOutput`](crate::output::NoInputAndOutputOutput).
|
15378 + | /* RustType.kt:516 */
|
10044 15379 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
10045 - | pub struct Builder {}
|
15380 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
15381 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
15382 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
10046 15383 | impl Builder {
|
10047 - | /// Consumes the builder and constructs a [`NoInputAndOutputOutput`](crate::output::NoInputAndOutputOutput).
|
15384 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`NoInputAndOutputOutput`](crate::output::NoInputAndOutputOutput).
|
15385 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
10048 15386 | pub fn build(self) -> crate::output::NoInputAndOutputOutput {
|
10049 15387 | self.build_enforcing_required_and_enum_traits()
|
10050 15388 | }
|
15389 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
10051 15390 | fn build_enforcing_required_and_enum_traits(self) -> crate::output::NoInputAndOutputOutput {
|
10052 - | crate::output::NoInputAndOutputOutput {}
|
15391 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
15392 + | crate::output::NoInputAndOutputOutput {
|
15393 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
15394 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
10053 15395 | }
|
15396 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
10054 15397 | }
|
15398 + |
|
15399 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
10055 15400 | }
|
10056 - | /// See [`NoInputAndNoOutputOutput`](crate::output::NoInputAndNoOutputOutput).
|
15401 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`NoInputAndNoOutputOutput`](crate::output::NoInputAndNoOutputOutput).
|
10057 15402 | pub mod no_input_and_no_output_output {
|
10058 15403 |
|
15404 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
10059 15405 | impl ::std::convert::From<Builder> for crate::output::NoInputAndNoOutputOutput {
|
10060 15406 | fn from(builder: Builder) -> Self {
|
10061 15407 | builder.build()
|
10062 15408 | }
|
10063 15409 | }
|
10064 - | /// A builder for [`NoInputAndNoOutputOutput`](crate::output::NoInputAndNoOutputOutput).
|
15410 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`NoInputAndNoOutputOutput`](crate::output::NoInputAndNoOutputOutput).
|
15411 + | /* RustType.kt:516 */
|
10065 15412 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
10066 - | pub struct Builder {}
|
15413 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
15414 + | pub struct Builder {/* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */}
|
15415 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
10067 15416 | impl Builder {
|
10068 - | /// Consumes the builder and constructs a [`NoInputAndNoOutputOutput`](crate::output::NoInputAndNoOutputOutput).
|
15417 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`NoInputAndNoOutputOutput`](crate::output::NoInputAndNoOutputOutput).
|
15418 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
10069 15419 | pub fn build(self) -> crate::output::NoInputAndNoOutputOutput {
|
10070 15420 | self.build_enforcing_required_and_enum_traits()
|
10071 15421 | }
|
15422 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
10072 15423 | fn build_enforcing_required_and_enum_traits(
|
10073 15424 | self,
|
10074 15425 | ) -> crate::output::NoInputAndNoOutputOutput {
|
10075 - | crate::output::NoInputAndNoOutputOutput {}
|
15426 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
15427 + | crate::output::NoInputAndNoOutputOutput {
|
15428 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */}
|
15429 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
10076 15430 | }
|
15431 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
10077 15432 | }
|
15433 + |
|
15434 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
10078 15435 | }
|