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 result typing.Optional\[naming_test_structs.model.Result\]:
|
4 6 | /// :param result_list typing.Optional\[typing.List\[naming_test_structs.model.Result\]\]:
|
5 7 | /// :param option typing.Optional\[naming_test_structs.model.Option\]:
|
6 8 | /// :param option_list typing.Optional\[typing.List\[naming_test_structs.model.Result\]\]:
|
7 9 | /// :param something_else typing.Optional\[naming_test_structs.model.SomethingElse\]:
|
8 10 | /// :rtype None:
|
11 + | /* StructureGenerator.kt:197 */
|
9 12 | #[allow(missing_docs)] // documentation missing in model
|
13 + | /* RustType.kt:516 */
|
10 14 | #[derive(
|
11 15 | ::std::clone::Clone, ::std::cmp::Eq, ::std::cmp::PartialEq, ::std::fmt::Debug, ::std::hash::Hash,
|
12 16 | )]
|
13 - | pub struct StructsInput {
|
17 + | pub /* StructureGenerator.kt:201 */ struct StructsInput {
|
18 + | /* RustType.kt:516 */
|
14 19 | #[pyo3(get, set)]
|
20 + | /* PythonServerStructureGenerator.kt:80 */
|
15 21 | /// :type typing.Optional\[naming_test_structs.model.Result\]:
|
22 + | /* StructureGenerator.kt:231 */
|
16 23 | #[allow(missing_docs)] // documentation missing in model
|
17 24 | pub result: ::std::option::Option<crate::model::Result>,
|
25 + | /* RustType.kt:516 */
|
18 26 | #[pyo3(get, set)]
|
27 + | /* PythonServerStructureGenerator.kt:80 */
|
19 28 | /// :type typing.Optional\[typing.List\[naming_test_structs.model.Result\]\]:
|
29 + | /* StructureGenerator.kt:231 */
|
20 30 | #[allow(missing_docs)] // documentation missing in model
|
21 31 | pub result_list: ::std::option::Option<::std::vec::Vec<crate::model::Result>>,
|
32 + | /* RustType.kt:516 */
|
22 33 | #[pyo3(get, set)]
|
34 + | /* PythonServerStructureGenerator.kt:80 */
|
23 35 | /// :type typing.Optional\[naming_test_structs.model.Option\]:
|
36 + | /* StructureGenerator.kt:231 */
|
24 37 | #[allow(missing_docs)] // documentation missing in model
|
25 38 | pub option: ::std::option::Option<crate::model::Option>,
|
39 + | /* RustType.kt:516 */
|
26 40 | #[pyo3(get, set)]
|
41 + | /* PythonServerStructureGenerator.kt:80 */
|
27 42 | /// :type typing.Optional\[typing.List\[naming_test_structs.model.Result\]\]:
|
43 + | /* StructureGenerator.kt:231 */
|
28 44 | #[allow(missing_docs)] // documentation missing in model
|
29 45 | pub option_list: ::std::option::Option<::std::vec::Vec<crate::model::Result>>,
|
46 + | /* RustType.kt:516 */
|
30 47 | #[pyo3(get, set)]
|
48 + | /* PythonServerStructureGenerator.kt:80 */
|
31 49 | /// :type typing.Optional\[naming_test_structs.model.SomethingElse\]:
|
50 + | /* StructureGenerator.kt:231 */
|
32 51 | #[allow(missing_docs)] // documentation missing in model
|
33 52 | pub something_else: ::std::option::Option<crate::model::SomethingElse>,
|
53 + | /* StructureGenerator.kt:201 */
|
34 54 | }
|
55 + | /* StructureGenerator.kt:135 */
|
35 56 | impl StructsInput {
|
57 + | /* StructureGenerator.kt:231 */
|
36 58 | #[allow(missing_docs)] // documentation missing in model
|
59 + | /* StructureGenerator.kt:166 */
|
37 60 | pub fn result(&self) -> ::std::option::Option<&crate::model::Result> {
|
61 + | /* StructureGenerator.kt:170 */
|
38 62 | self.result.as_ref()
|
63 + | /* StructureGenerator.kt:166 */
|
39 64 | }
|
65 + | /* StructureGenerator.kt:231 */
|
40 66 | #[allow(missing_docs)] // documentation missing in model
|
67 + | /* StructureGenerator.kt:166 */
|
41 68 | pub fn result_list(&self) -> ::std::option::Option<&[crate::model::Result]> {
|
69 + | /* StructureGenerator.kt:169 */
|
42 70 | self.result_list.as_deref()
|
71 + | /* StructureGenerator.kt:166 */
|
43 72 | }
|
73 + | /* StructureGenerator.kt:231 */
|
44 74 | #[allow(missing_docs)] // documentation missing in model
|
75 + | /* StructureGenerator.kt:166 */
|
45 76 | pub fn option(&self) -> ::std::option::Option<&crate::model::Option> {
|
77 + | /* StructureGenerator.kt:170 */
|
46 78 | self.option.as_ref()
|
79 + | /* StructureGenerator.kt:166 */
|
47 80 | }
|
81 + | /* StructureGenerator.kt:231 */
|
48 82 | #[allow(missing_docs)] // documentation missing in model
|
83 + | /* StructureGenerator.kt:166 */
|
49 84 | pub fn option_list(&self) -> ::std::option::Option<&[crate::model::Result]> {
|
85 + | /* StructureGenerator.kt:169 */
|
50 86 | self.option_list.as_deref()
|
87 + | /* StructureGenerator.kt:166 */
|
51 88 | }
|
89 + | /* StructureGenerator.kt:231 */
|
52 90 | #[allow(missing_docs)] // documentation missing in model
|
91 + | /* StructureGenerator.kt:166 */
|
53 92 | pub fn something_else(&self) -> ::std::option::Option<&crate::model::SomethingElse> {
|
93 + | /* StructureGenerator.kt:170 */
|
54 94 | self.something_else.as_ref()
|
95 + | /* StructureGenerator.kt:166 */
|
55 96 | }
|
97 + | /* StructureGenerator.kt:135 */
|
56 98 | }
|
99 + | /* RustType.kt:516 */
|
57 100 | #[allow(clippy::new_without_default)]
|
101 + | /* RustType.kt:516 */
|
58 102 | #[allow(clippy::too_many_arguments)]
|
103 + | /* RustType.kt:516 */
|
59 104 | #[::pyo3::pymethods]
|
105 + | /* PythonServerStructureGenerator.kt:88 */
|
60 106 | impl StructsInput {
|
61 107 | #[new]
|
62 108 | pub fn new(
|
63 109 | result: ::std::option::Option<crate::model::Result>,
|
64 110 | result_list: ::std::option::Option<::std::vec::Vec<crate::model::Result>>,
|
65 111 | option: ::std::option::Option<crate::model::Option>,
|
66 112 | option_list: ::std::option::Option<::std::vec::Vec<crate::model::Result>>,
|
67 113 | something_else: ::std::option::Option<crate::model::SomethingElse>,
|
68 114 | ) -> Self {
|
69 115 | Self {
|
70 116 | result,
|
71 117 | result_list,
|
72 118 | option,
|
73 119 | option_list,
|
74 120 | something_else,
|
75 121 | }
|
76 122 | }
|
77 123 | fn __repr__(&self) -> String {
|
78 124 | format!("{self:?}")
|
79 125 | }
|
80 126 | fn __str__(&self) -> String {
|
81 127 | format!("{self:?}")
|
82 128 | }
|
83 129 | }
|
130 + | /* PythonServerStructureGenerator.kt:111 */
|
84 131 | impl<'source> ::pyo3::FromPyObject<'source> for std::boxed::Box<StructsInput> {
|
85 132 | fn extract(ob: &'source ::pyo3::PyAny) -> ::pyo3::PyResult<Self> {
|
86 133 | ob.extract::<StructsInput>().map(Box::new)
|
87 134 | }
|
88 135 | }
|
89 136 |
|
90 137 | impl ::pyo3::IntoPy<::pyo3::PyObject> for std::boxed::Box<StructsInput> {
|
91 138 | fn into_py(self, py: ::pyo3::Python<'_>) -> ::pyo3::PyObject {
|
92 139 | (*self).into_py(py)
|
93 140 | }
|
94 141 | }
|
142 + | /* ServerStructureConstrainedTraitImpl.kt:21 */
|
95 143 | impl crate::constrained::Constrained for crate::input::StructsInput {
|
96 144 | type Unconstrained = crate::input::structs_input_internal::Builder;
|
97 145 | }
|
146 + | /* ServerCodegenVisitor.kt:370 */
|
98 147 | impl StructsInput {
|
99 - | /// Creates a new builder-style object to manufacture [`StructsInput`](crate::input::StructsInput).
|
148 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:211 */Creates a new builder-style object to manufacture [`StructsInput`](crate::input::StructsInput).
|
149 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
100 150 | pub fn builder() -> crate::input::structs_input::Builder {
|
151 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:213 */
|
101 152 | crate::input::structs_input::Builder::default()
|
153 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:212 */
|
102 154 | }
|
155 + | /* ServerCodegenVisitor.kt:370 */
|
103 156 | }
|
104 - | /// See [`StructsInput`](crate::input::StructsInput).
|
157 + | /// /* ServerBuilderGenerator.kt:171 */See [`StructsInput`](crate::input::StructsInput).
|
105 158 | pub(crate) mod structs_input_internal {
|
106 159 |
|
160 + | /* ServerBuilderGenerator.kt:461 */
|
107 161 | impl ::std::convert::From<Builder> for crate::input::StructsInput {
|
108 162 | fn from(builder: Builder) -> Self {
|
109 163 | builder.build()
|
110 164 | }
|
111 165 | }
|
112 - | /// A builder for [`StructsInput`](crate::input::StructsInput).
|
166 + | /// /* ServerBuilderGenerator.kt:201 */A builder for [`StructsInput`](crate::input::StructsInput).
|
167 + | /* RustType.kt:516 */
|
113 168 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
169 + | /* ServerBuilderGenerator.kt:211 */
|
114 170 | pub(crate) struct Builder {
|
171 + | /* ServerBuilderGenerator.kt:308 */
|
115 172 | pub(crate) result: ::std::option::Option<crate::model::Result>,
|
173 + | /* ServerBuilderGenerator.kt:308 */
|
116 174 | pub(crate) result_list: ::std::option::Option<::std::vec::Vec<crate::model::Result>>,
|
175 + | /* ServerBuilderGenerator.kt:308 */
|
117 176 | pub(crate) option: ::std::option::Option<crate::model::Option>,
|
177 + | /* ServerBuilderGenerator.kt:308 */
|
118 178 | pub(crate) option_list: ::std::option::Option<::std::vec::Vec<crate::model::Result>>,
|
179 + | /* ServerBuilderGenerator.kt:308 */
|
119 180 | pub(crate) something_else: ::std::option::Option<crate::model::SomethingElse>,
|
181 + | /* ServerBuilderGenerator.kt:211 */
|
120 182 | }
|
183 + | /* ServerBuilderGenerator.kt:215 */
|
121 184 | impl Builder {
|
185 + | /* ServerBuilderGenerator.kt:426 */
|
122 186 | #[allow(missing_docs)] // documentation missing in model
|
187 + | /* ServerBuilderGenerator.kt:428 */
|
123 188 | pub(crate) fn set_result(
|
124 189 | mut self,
|
125 190 | input: Option<impl ::std::convert::Into<crate::model::Result>>,
|
126 191 | ) -> Self {
|
192 + | /* ServerBuilderGenerator.kt:429 */
|
127 193 | self.result = input.map(|v| v.into());
|
128 194 | self
|
195 + | /* ServerBuilderGenerator.kt:428 */
|
129 196 | }
|
197 + | /* ServerBuilderGenerator.kt:426 */
|
130 198 | #[allow(missing_docs)] // documentation missing in model
|
199 + | /* ServerBuilderGenerator.kt:428 */
|
131 200 | pub(crate) fn set_result_list(
|
132 201 | mut self,
|
133 202 | input: Option<impl ::std::convert::Into<::std::vec::Vec<crate::model::Result>>>,
|
134 203 | ) -> Self {
|
204 + | /* ServerBuilderGenerator.kt:429 */
|
135 205 | self.result_list = input.map(|v| v.into());
|
136 206 | self
|
207 + | /* ServerBuilderGenerator.kt:428 */
|
137 208 | }
|
209 + | /* ServerBuilderGenerator.kt:426 */
|
138 210 | #[allow(missing_docs)] // documentation missing in model
|
211 + | /* ServerBuilderGenerator.kt:428 */
|
139 212 | pub(crate) fn set_option(
|
140 213 | mut self,
|
141 214 | input: Option<impl ::std::convert::Into<crate::model::Option>>,
|
142 215 | ) -> Self {
|
216 + | /* ServerBuilderGenerator.kt:429 */
|
143 217 | self.option = input.map(|v| v.into());
|
144 218 | self
|
219 + | /* ServerBuilderGenerator.kt:428 */
|
145 220 | }
|
221 + | /* ServerBuilderGenerator.kt:426 */
|
146 222 | #[allow(missing_docs)] // documentation missing in model
|
223 + | /* ServerBuilderGenerator.kt:428 */
|
147 224 | pub(crate) fn set_option_list(
|
148 225 | mut self,
|
149 226 | input: Option<impl ::std::convert::Into<::std::vec::Vec<crate::model::Result>>>,
|
150 227 | ) -> Self {
|
228 + | /* ServerBuilderGenerator.kt:429 */
|
151 229 | self.option_list = input.map(|v| v.into());
|
152 230 | self
|
231 + | /* ServerBuilderGenerator.kt:428 */
|
153 232 | }
|
233 + | /* ServerBuilderGenerator.kt:426 */
|
154 234 | #[allow(missing_docs)] // documentation missing in model
|
235 + | /* ServerBuilderGenerator.kt:428 */
|
155 236 | pub(crate) fn set_something_else(
|
156 237 | mut self,
|
157 238 | input: Option<impl ::std::convert::Into<crate::model::SomethingElse>>,
|
158 239 | ) -> Self {
|
240 + | /* ServerBuilderGenerator.kt:429 */
|
159 241 | self.something_else = input.map(|v| v.into());
|
160 242 | self
|
243 + | /* ServerBuilderGenerator.kt:428 */
|
161 244 | }
|
162 - | /// Consumes the builder and constructs a [`StructsInput`](crate::input::StructsInput).
|
245 + | /// /* ServerBuilderGenerator.kt:258 */Consumes the builder and constructs a [`StructsInput`](crate::input::StructsInput).
|
246 + | /* ServerBuilderGenerator.kt:271 */
|
163 247 | pub fn build(self) -> crate::input::StructsInput {
|
164 248 | self.build_enforcing_all_constraints()
|
165 249 | }
|
250 + | /* ServerBuilderGenerator.kt:283 */
|
166 251 | fn build_enforcing_all_constraints(self) -> crate::input::StructsInput {
|
252 + | /* ServerBuilderGenerator.kt:542 */
|
167 253 | crate::input::StructsInput {
|
254 + | /* ServerBuilderGenerator.kt:546 */
|
168 255 | result: self.result,
|
256 + | /* ServerBuilderGenerator.kt:546 */
|
169 257 | result_list: self.result_list,
|
258 + | /* ServerBuilderGenerator.kt:546 */
|
170 259 | option: self.option,
|
260 + | /* ServerBuilderGenerator.kt:546 */
|
171 261 | option_list: self.option_list,
|
262 + | /* ServerBuilderGenerator.kt:546 */
|
172 263 | something_else: self.something_else,
|
264 + | /* ServerBuilderGenerator.kt:542 */
|
173 265 | }
|
266 + | /* ServerBuilderGenerator.kt:283 */
|
174 267 | }
|
268 + | /* ServerBuilderGenerator.kt:215 */
|
175 269 | }
|
270 + |
|
271 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
176 272 | }
|
177 - | /// See [`StructsInput`](crate::input::StructsInput).
|
273 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:110 */See [`StructsInput`](crate::input::StructsInput).
|
178 274 | pub mod structs_input {
|
179 275 |
|
276 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:269 */
|
180 277 | impl ::std::convert::From<Builder> for crate::input::StructsInput {
|
181 278 | fn from(builder: Builder) -> Self {
|
182 279 | builder.build()
|
183 280 | }
|
184 281 | }
|
185 - | /// A builder for [`StructsInput`](crate::input::StructsInput).
|
282 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:130 */A builder for [`StructsInput`](crate::input::StructsInput).
|
283 + | /* RustType.kt:516 */
|
186 284 | #[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
|
285 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
187 286 | pub struct Builder {
|
287 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
188 288 | pub(crate) result: ::std::option::Option<crate::model::Result>,
|
289 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
189 290 | pub(crate) result_list: ::std::option::Option<::std::vec::Vec<crate::model::Result>>,
|
291 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
190 292 | pub(crate) option: ::std::option::Option<crate::model::Option>,
|
293 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
191 294 | pub(crate) option_list: ::std::option::Option<::std::vec::Vec<crate::model::Result>>,
|
295 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:225 */
|
192 296 | pub(crate) something_else: ::std::option::Option<crate::model::SomethingElse>,
|
297 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:137 */
|
193 298 | }
|
299 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
194 300 | impl Builder {
|
301 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
195 302 | #[allow(missing_docs)] // documentation missing in model
|
303 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
196 304 | pub fn result(mut self, input: ::std::option::Option<crate::model::Result>) -> Self {
|
197 - | self.result = input;
|
305 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
306 + | self.result =
|
307 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
308 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
198 309 | self
|
310 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
199 311 | }
|
312 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
200 313 | #[allow(missing_docs)] // documentation missing in model
|
314 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
201 315 | pub fn result_list(
|
202 316 | mut self,
|
203 317 | input: ::std::option::Option<::std::vec::Vec<crate::model::Result>>,
|
204 318 | ) -> Self {
|
205 - | self.result_list = input;
|
319 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
320 + | self.result_list =
|
321 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
322 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
206 323 | self
|
324 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
207 325 | }
|
326 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
208 327 | #[allow(missing_docs)] // documentation missing in model
|
328 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
209 329 | pub fn option(mut self, input: ::std::option::Option<crate::model::Option>) -> Self {
|
210 - | self.option = input;
|
330 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
331 + | self.option =
|
332 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
333 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
211 334 | self
|
335 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
212 336 | }
|
337 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
213 338 | #[allow(missing_docs)] // documentation missing in model
|
339 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
214 340 | pub fn option_list(
|
215 341 | mut self,
|
216 342 | input: ::std::option::Option<::std::vec::Vec<crate::model::Result>>,
|
217 343 | ) -> Self {
|
218 - | self.option_list = input;
|
344 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
345 + | self.option_list =
|
346 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
347 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
219 348 | self
|
349 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
220 350 | }
|
351 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:241 */
|
221 352 | #[allow(missing_docs)] // documentation missing in model
|
353 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
222 354 | pub fn something_else(
|
223 355 | mut self,
|
224 356 | input: ::std::option::Option<crate::model::SomethingElse>,
|
225 357 | ) -> Self {
|
226 - | self.something_else = input;
|
358 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */
|
359 + | self.something_else =
|
360 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:247 */input
|
361 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:245 */;
|
227 362 | self
|
363 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:244 */
|
228 364 | }
|
229 - | /// Consumes the builder and constructs a [`StructsInput`](crate::input::StructsInput).
|
365 + | /// /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:150 */Consumes the builder and constructs a [`StructsInput`](crate::input::StructsInput).
|
366 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:159 */
|
230 367 | pub fn build(self) -> crate::input::StructsInput {
|
231 368 | self.build_enforcing_required_and_enum_traits()
|
232 369 | }
|
370 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
233 371 | fn build_enforcing_required_and_enum_traits(self) -> crate::input::StructsInput {
|
372 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
234 373 | crate::input::StructsInput {
|
374 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
235 375 | result: self.result,
|
376 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
236 377 | result_list: self.result_list,
|
378 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
237 379 | option: self.option,
|
380 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
238 381 | option_list: self.option_list,
|
382 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:186 */
|
239 383 | something_else: self.something_else,
|
384 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:182 */
|
240 385 | }
|
386 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:171 */
|
241 387 | }
|
388 + | /* ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt:141 */
|
242 389 | }
|
390 + |
|
391 + | /* RustCrateInlineModuleComposingWriter.kt:299 */
|
243 392 | }
|