@agntcy/slim-bindings-linux-x64-gnu 1.4.0-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,3594 @@
1
+ import { join } from "path";
2
+ import { DataType, open, close, define, arrayConstructor, restorePointer, wrapPointer, unwrapPointer, createPointer, freePointer, isNullPointer, PointerType, } from 'ffi-rs';
3
+ import { UniffiInternalError, uniffiCreateFfiConverterString, UniffiError, } from 'uniffi-bindgen-react-native';
4
+ const CALL_SUCCESS = 0, CALL_ERROR = 1, CALL_UNEXPECTED_ERROR = 2, CALL_CANCELLED = 3;
5
+ let libraryLoaded = false;
6
+ /**
7
+ * Loads the dynamic library from disk into memory.
8
+ *
9
+ */
10
+ function _uniffiLoad() {
11
+ const library = "libslim_bindings";
12
+ const { platform } = process;
13
+ let ext = { darwin: "dylib", win32: "dll", linux: "so" }[platform];
14
+ if (!ext) {
15
+ console.warn("Unsupported platform:", platform);
16
+ ext = "so";
17
+ }
18
+ const filePath = __filename;
19
+ const libraryDirectory = __dirname;
20
+ // Get the path to the lib to load
21
+ const libraryPath = join(libraryDirectory, `${library}.${ext}`);
22
+ open({ library, path: libraryPath });
23
+ libraryLoaded = true;
24
+ }
25
+ /**
26
+ * Unloads the dynamic library from disk from memory. This can be used to clean up the library early
27
+ * before program execution completes.
28
+ */
29
+ function _uniffiUnload() {
30
+ close('libslim_bindings');
31
+ libraryLoaded = false;
32
+ }
33
+ function _checkUniffiLoaded() {
34
+ if (!libraryLoaded) {
35
+ throw new Error('Uniffi function call was issued, but the native dependency was not loaded. Ensure you are calling uniffiLoad() before interacting with any uniffi backed functionality.');
36
+ }
37
+ }
38
+ _uniffiLoad();
39
+ // Release library memory before process terminates
40
+ // TODO: is this even really required?
41
+ process.on('beforeExit', () => {
42
+ if (libraryLoaded) {
43
+ _uniffiUnload();
44
+ }
45
+ });
46
+ const [nullPointer] = unwrapPointer(createPointer({
47
+ paramsType: [DataType.Void],
48
+ paramsValue: [undefined]
49
+ }));
50
+ class UniffiFfiRsRustCaller {
51
+ rustCall(caller, liftString) {
52
+ return this.makeRustCall(caller, liftString);
53
+ }
54
+ rustCallWithError(liftError, caller, liftString) {
55
+ return this.makeRustCall(caller, liftString, liftError);
56
+ }
57
+ createCallStatus() {
58
+ const $callStatus = createPointer({
59
+ paramsType: [DataType_UniffiRustCallStatus],
60
+ paramsValue: [{
61
+ code: CALL_SUCCESS,
62
+ error_buf: { capacity: 0, len: 0, data: nullPointer },
63
+ }],
64
+ });
65
+ return $callStatus;
66
+ }
67
+ createErrorStatus(_code, _errorBuf) {
68
+ // FIXME: what is this supposed to do and how does it not allocate `errorBuf` when making the
69
+ // call status struct?
70
+ throw new Error('UniffiRustCaller.createErrorStatus is unimplemented.');
71
+ // const status = this.statusConstructor();
72
+ // status.code = code;
73
+ // status.errorBuf = errorBuf;
74
+ // return status;
75
+ }
76
+ makeRustCall(caller, liftString, liftError) {
77
+ _checkUniffiLoaded();
78
+ const $callStatus = this.createCallStatus();
79
+ let returnedVal = caller(unwrapPointer($callStatus)[0]);
80
+ const [callStatus] = restorePointer({
81
+ retType: [DataType_UniffiRustCallStatus],
82
+ paramsValue: $callStatus,
83
+ });
84
+ uniffiCheckCallStatus(callStatus, liftString, liftError);
85
+ return returnedVal;
86
+ }
87
+ }
88
+ function uniffiCheckCallStatus(callStatus, liftString, liftError) {
89
+ switch (callStatus.code) {
90
+ case CALL_SUCCESS:
91
+ return;
92
+ case CALL_ERROR: {
93
+ // - Rust will not set the data pointer for a sucessful return.
94
+ // - If unsuccesful, lift the error from the RustBuf and free.
95
+ if (!isNullPointer(callStatus.error_buf.data)) {
96
+ const struct = new UniffiRustBufferValue(callStatus.error_buf);
97
+ const errorBufBytes = struct.consumeIntoUint8Array();
98
+ if (liftError) {
99
+ const [enumName, errorVariant] = liftError(errorBufBytes);
100
+ // Extract variant name and message if errorVariant is an object with tag and inner
101
+ if (errorVariant && typeof errorVariant === "object" && "tag" in errorVariant && "inner" in errorVariant) {
102
+ const variantName = errorVariant.tag;
103
+ const message = errorVariant.inner?.message || undefined;
104
+ throw new UniffiError(enumName, variantName, message);
105
+ }
106
+ else {
107
+ // Fallback for simple string variant or unexpected format
108
+ throw new UniffiError(enumName, String(errorVariant));
109
+ }
110
+ }
111
+ }
112
+ throw new UniffiInternalError.UnexpectedRustCallError();
113
+ }
114
+ case CALL_UNEXPECTED_ERROR: {
115
+ // When the rust code sees a panic, it tries to construct a RustBuffer
116
+ // with the message. But if that code panics, then it just sends back
117
+ // an empty buffer.
118
+ if (!isNullPointer(callStatus.error_buf.data)) {
119
+ const struct = new UniffiRustBufferValue(callStatus.error_buf);
120
+ const errorBufBytes = struct.consumeIntoUint8Array();
121
+ if (errorBufBytes.byteLength > 0) {
122
+ const liftedErrorBuf = liftString(errorBufBytes);
123
+ throw new UniffiInternalError.RustPanic(liftedErrorBuf);
124
+ }
125
+ }
126
+ throw new UniffiInternalError.RustPanic("Rust panic");
127
+ }
128
+ case CALL_CANCELLED:
129
+ // #RUST_TASK_CANCELLATION:
130
+ //
131
+ // This error code is expected when a Rust Future is cancelled or aborted, either
132
+ // from the foreign side, or from within Rust itself.
133
+ //
134
+ // As of uniffi-rs v0.28.0, call cancellation is only checked for in the Swift bindings,
135
+ // and uses an Unimplemeneted error.
136
+ throw new UniffiInternalError.AbortError();
137
+ default:
138
+ throw new UniffiInternalError.UnexpectedRustCallStatusCode();
139
+ }
140
+ }
141
+ export const uniffiCaller = new UniffiFfiRsRustCaller();
142
+ export const stringConverter = (() => {
143
+ const encoder = new TextEncoder();
144
+ const decoder = new TextDecoder();
145
+ return {
146
+ stringToBytes: (s) => encoder.encode(s),
147
+ bytesToString: (ab) => decoder.decode(ab),
148
+ stringByteLength: (s) => encoder.encode(s).byteLength,
149
+ };
150
+ })();
151
+ export const FfiConverterString = uniffiCreateFfiConverterString(stringConverter);
152
+ const DataType_UniffiRustBufferStruct = {
153
+ capacity: DataType.U64,
154
+ len: DataType.U64,
155
+ data: DataType.External,
156
+ ffiTypeTag: DataType.StackStruct,
157
+ };
158
+ const DataType_UniffiForeignBytes = {
159
+ len: DataType.I32,
160
+ data: DataType.External,
161
+ ffiTypeTag: DataType.StackStruct,
162
+ };
163
+ /** A UniffiRustBufferValue represents stack allocated structure containing pointer to series of
164
+ * bytes most likely on the heap, along with the size of that data in bytes.
165
+ *
166
+ * It is often used to encode more complex function parameters / return values like structs,
167
+ * optionals, etc.
168
+ *
169
+ * `RustBufferValue`s are behind the scenes backed by manually managed memory on the rust end, and
170
+ * must be explictly destroyed when no longer used to ensure no memory is leaked.
171
+ * */
172
+ export class UniffiRustBufferValue {
173
+ constructor(struct) {
174
+ this.struct = struct;
175
+ }
176
+ static allocateWithBytes(bytes) {
177
+ const [dataPointer] = createPointer({
178
+ paramsType: [arrayConstructor({ type: DataType.U8Array, length: bytes.length })],
179
+ paramsValue: [bytes],
180
+ });
181
+ const rustBuffer = uniffiCaller.rustCall((callStatus) => {
182
+ return FFI_DYNAMIC_LIB.ffi_slim_bindings_rustbuffer_from_bytes([
183
+ // TODO: figure out why this is necessary.
184
+ { data: unwrapPointer([dataPointer])[0], len: bytes.byteLength },
185
+ callStatus,
186
+ ]);
187
+ },
188
+ /*liftString:*/ FfiConverterString.lift);
189
+ freePointer({
190
+ paramsType: [arrayConstructor({ type: DataType.U8Array, length: bytes.byteLength })],
191
+ paramsValue: [dataPointer],
192
+ pointerType: PointerType.RsPointer
193
+ });
194
+ return new UniffiRustBufferValue(rustBuffer);
195
+ }
196
+ static allocateEmpty() {
197
+ return UniffiRustBufferValue.allocateWithBytes(new Uint8Array());
198
+ }
199
+ toStruct() {
200
+ if (!this.struct) {
201
+ throw new Error('Error getting struct data for UniffiRustBufferValue - struct.data has been freed! This is not allowed.');
202
+ }
203
+ return this.struct;
204
+ }
205
+ toUint8Array() {
206
+ if (!this.struct) {
207
+ throw new Error('Error converting rust buffer to uint8array - struct.data has been freed! This is not allowed.');
208
+ }
209
+ if (this.struct.len > Number.MAX_VALUE) {
210
+ throw new Error(`Error converting rust buffer to uint8array - rust buffer length is ${this.struct.len}, which cannot be represented as a Number safely.`);
211
+ }
212
+ const [contents] = restorePointer({
213
+ retType: [arrayConstructor({ type: DataType.U8Array, length: Number(this.struct.len) })],
214
+ paramsValue: wrapPointer([this.struct.data]),
215
+ });
216
+ return new Uint8Array(contents);
217
+ }
218
+ consumeIntoUint8Array() {
219
+ const result = this.toUint8Array();
220
+ this.destroy();
221
+ return result;
222
+ }
223
+ destroy() {
224
+ if (!this.struct) {
225
+ throw new Error('Error destroying UniffiRustBufferValue - already previously destroyed! Double freeing is not allowed.');
226
+ }
227
+ uniffiCaller.rustCall((callStatus) => {
228
+ FFI_DYNAMIC_LIB.ffi_slim_bindings_rustbuffer_free([this.struct, callStatus]);
229
+ },
230
+ /*liftString:*/ FfiConverterString.lift);
231
+ // freePointer({
232
+ // paramsType: [arrayConstructor({ type: DataType.U8Array, length: this.struct.len })],
233
+ // paramsValue: wrapPointer([this.struct.data]),
234
+ // pointerType: PointerType.RsPointer,
235
+ // });
236
+ // console.log('DONE');
237
+ this.struct = null;
238
+ }
239
+ }
240
+ const DataType_UniffiRustCallStatus = {
241
+ code: DataType.U8,
242
+ error_buf: DataType_UniffiRustBufferStruct,
243
+ };
244
+ const DataType_UniffiForeignFutureDroppedCallbackStruct = {
245
+ handle: DataType.U64,
246
+ free: /* callback */ DataType.External,
247
+ // Ensure that the struct is stack defined, without this ffi-rs isn't able to decode the
248
+ // struct properly
249
+ ffiTypeTag: DataType.StackStruct,
250
+ };
251
+ const DataType_UniffiForeignFutureResultU8 = {
252
+ returnValue: DataType.U8,
253
+ callStatus: /* RustCallStatus */ DataType.External,
254
+ // Ensure that the struct is stack defined, without this ffi-rs isn't able to decode the
255
+ // struct properly
256
+ ffiTypeTag: DataType.StackStruct,
257
+ };
258
+ const DataType_UniffiForeignFutureResultI8 = {
259
+ returnValue: /* i8 */ DataType.U8,
260
+ callStatus: /* RustCallStatus */ DataType.External,
261
+ // Ensure that the struct is stack defined, without this ffi-rs isn't able to decode the
262
+ // struct properly
263
+ ffiTypeTag: DataType.StackStruct,
264
+ };
265
+ const DataType_UniffiForeignFutureResultU16 = {
266
+ returnValue: /* u16 */ DataType.U64,
267
+ callStatus: /* RustCallStatus */ DataType.External,
268
+ // Ensure that the struct is stack defined, without this ffi-rs isn't able to decode the
269
+ // struct properly
270
+ ffiTypeTag: DataType.StackStruct,
271
+ };
272
+ const DataType_UniffiForeignFutureResultI16 = {
273
+ returnValue: DataType.I16,
274
+ callStatus: /* RustCallStatus */ DataType.External,
275
+ // Ensure that the struct is stack defined, without this ffi-rs isn't able to decode the
276
+ // struct properly
277
+ ffiTypeTag: DataType.StackStruct,
278
+ };
279
+ const DataType_UniffiForeignFutureResultU32 = {
280
+ returnValue: /* u32 */ DataType.U64,
281
+ callStatus: /* RustCallStatus */ DataType.External,
282
+ // Ensure that the struct is stack defined, without this ffi-rs isn't able to decode the
283
+ // struct properly
284
+ ffiTypeTag: DataType.StackStruct,
285
+ };
286
+ const DataType_UniffiForeignFutureResultI32 = {
287
+ returnValue: DataType.I32,
288
+ callStatus: /* RustCallStatus */ DataType.External,
289
+ // Ensure that the struct is stack defined, without this ffi-rs isn't able to decode the
290
+ // struct properly
291
+ ffiTypeTag: DataType.StackStruct,
292
+ };
293
+ const DataType_UniffiForeignFutureResultU64 = {
294
+ returnValue: DataType.U64,
295
+ callStatus: /* RustCallStatus */ DataType.External,
296
+ // Ensure that the struct is stack defined, without this ffi-rs isn't able to decode the
297
+ // struct properly
298
+ ffiTypeTag: DataType.StackStruct,
299
+ };
300
+ const DataType_UniffiForeignFutureResultI64 = {
301
+ returnValue: DataType.I64,
302
+ callStatus: /* RustCallStatus */ DataType.External,
303
+ // Ensure that the struct is stack defined, without this ffi-rs isn't able to decode the
304
+ // struct properly
305
+ ffiTypeTag: DataType.StackStruct,
306
+ };
307
+ const DataType_UniffiForeignFutureResultF32 = {
308
+ returnValue: /* f32 */ DataType.Float,
309
+ callStatus: /* RustCallStatus */ DataType.External,
310
+ // Ensure that the struct is stack defined, without this ffi-rs isn't able to decode the
311
+ // struct properly
312
+ ffiTypeTag: DataType.StackStruct,
313
+ };
314
+ const DataType_UniffiForeignFutureResultF64 = {
315
+ returnValue: /* f64 */ DataType.Double,
316
+ callStatus: /* RustCallStatus */ DataType.External,
317
+ // Ensure that the struct is stack defined, without this ffi-rs isn't able to decode the
318
+ // struct properly
319
+ ffiTypeTag: DataType.StackStruct,
320
+ };
321
+ const DataType_UniffiForeignFutureResultRustBuffer = {
322
+ returnValue: DataType_UniffiRustBufferStruct,
323
+ callStatus: /* RustCallStatus */ DataType.External,
324
+ // Ensure that the struct is stack defined, without this ffi-rs isn't able to decode the
325
+ // struct properly
326
+ ffiTypeTag: DataType.StackStruct,
327
+ };
328
+ const DataType_UniffiForeignFutureResultVoid = {
329
+ callStatus: /* RustCallStatus */ DataType.External,
330
+ // Ensure that the struct is stack defined, without this ffi-rs isn't able to decode the
331
+ // struct properly
332
+ ffiTypeTag: DataType.StackStruct,
333
+ };
334
+ const DataType_UniffiVTableCallbackInterfaceStreamStreamHandler = {
335
+ uniffiFree: /* callback */ DataType.External,
336
+ uniffiClone: /* callback */ DataType.External,
337
+ handle: /* callback */ DataType.External,
338
+ // Ensure that the struct is stack defined, without this ffi-rs isn't able to decode the
339
+ // struct properly
340
+ ffiTypeTag: DataType.StackStruct,
341
+ };
342
+ const DataType_UniffiVTableCallbackInterfaceStreamUnaryHandler = {
343
+ uniffiFree: /* callback */ DataType.External,
344
+ uniffiClone: /* callback */ DataType.External,
345
+ handle: /* callback */ DataType.External,
346
+ // Ensure that the struct is stack defined, without this ffi-rs isn't able to decode the
347
+ // struct properly
348
+ ffiTypeTag: DataType.StackStruct,
349
+ };
350
+ const DataType_UniffiVTableCallbackInterfaceUnaryStreamHandler = {
351
+ uniffiFree: /* callback */ DataType.External,
352
+ uniffiClone: /* callback */ DataType.External,
353
+ handle: /* callback */ DataType.External,
354
+ // Ensure that the struct is stack defined, without this ffi-rs isn't able to decode the
355
+ // struct properly
356
+ ffiTypeTag: DataType.StackStruct,
357
+ };
358
+ const DataType_UniffiVTableCallbackInterfaceUnaryUnaryHandler = {
359
+ uniffiFree: /* callback */ DataType.External,
360
+ uniffiClone: /* callback */ DataType.External,
361
+ handle: /* callback */ DataType.External,
362
+ // Ensure that the struct is stack defined, without this ffi-rs isn't able to decode the
363
+ // struct properly
364
+ ffiTypeTag: DataType.StackStruct,
365
+ };
366
+ // Actual FFI functions from dynamic library
367
+ /** This direct / "extern C" type FFI interface is bound directly to the functions exposed by the
368
+ * dynamic library. Using this manually from end-user javascript code is unsafe and this is not
369
+ * recommended. */
370
+ const FFI_DYNAMIC_LIB = define({
371
+ RustFutureContinuationCallback: {
372
+ library: "libslim_bindings",
373
+ retType: DataType.Void,
374
+ paramsType: [
375
+ DataType.U64,
376
+ /* i8 */ DataType.U8
377
+ ],
378
+ },
379
+ ForeignFutureDroppedCallback: {
380
+ library: "libslim_bindings",
381
+ retType: DataType.Void,
382
+ paramsType: [
383
+ DataType.U64
384
+ ],
385
+ },
386
+ CallbackInterfaceFree: {
387
+ library: "libslim_bindings",
388
+ retType: DataType.Void,
389
+ paramsType: [
390
+ DataType.U64
391
+ ],
392
+ },
393
+ CallbackInterfaceClone: {
394
+ library: "libslim_bindings",
395
+ retType: DataType.U64,
396
+ paramsType: [
397
+ DataType.U64
398
+ ],
399
+ },
400
+ ForeignFutureCompleteU8: {
401
+ library: "libslim_bindings",
402
+ retType: DataType.Void,
403
+ paramsType: [
404
+ DataType.U64,
405
+ /* UniffiForeignFutureResultU8 */ DataType.U8Array
406
+ ],
407
+ },
408
+ ForeignFutureCompleteI8: {
409
+ library: "libslim_bindings",
410
+ retType: DataType.Void,
411
+ paramsType: [
412
+ DataType.U64,
413
+ /* UniffiForeignFutureResultI8 */ DataType.U8Array
414
+ ],
415
+ },
416
+ ForeignFutureCompleteU16: {
417
+ library: "libslim_bindings",
418
+ retType: DataType.Void,
419
+ paramsType: [
420
+ DataType.U64,
421
+ /* UniffiForeignFutureResultU16 */ DataType.U8Array
422
+ ],
423
+ },
424
+ ForeignFutureCompleteI16: {
425
+ library: "libslim_bindings",
426
+ retType: DataType.Void,
427
+ paramsType: [
428
+ DataType.U64,
429
+ /* UniffiForeignFutureResultI16 */ DataType.U8Array
430
+ ],
431
+ },
432
+ ForeignFutureCompleteU32: {
433
+ library: "libslim_bindings",
434
+ retType: DataType.Void,
435
+ paramsType: [
436
+ DataType.U64,
437
+ /* UniffiForeignFutureResultU32 */ DataType.U8Array
438
+ ],
439
+ },
440
+ ForeignFutureCompleteI32: {
441
+ library: "libslim_bindings",
442
+ retType: DataType.Void,
443
+ paramsType: [
444
+ DataType.U64,
445
+ /* UniffiForeignFutureResultI32 */ DataType.U8Array
446
+ ],
447
+ },
448
+ ForeignFutureCompleteU64: {
449
+ library: "libslim_bindings",
450
+ retType: DataType.Void,
451
+ paramsType: [
452
+ DataType.U64,
453
+ /* UniffiForeignFutureResultU64 */ DataType.U8Array
454
+ ],
455
+ },
456
+ ForeignFutureCompleteI64: {
457
+ library: "libslim_bindings",
458
+ retType: DataType.Void,
459
+ paramsType: [
460
+ DataType.U64,
461
+ /* UniffiForeignFutureResultI64 */ DataType.U8Array
462
+ ],
463
+ },
464
+ ForeignFutureCompleteF32: {
465
+ library: "libslim_bindings",
466
+ retType: DataType.Void,
467
+ paramsType: [
468
+ DataType.U64,
469
+ /* UniffiForeignFutureResultF32 */ DataType.U8Array
470
+ ],
471
+ },
472
+ ForeignFutureCompleteF64: {
473
+ library: "libslim_bindings",
474
+ retType: DataType.Void,
475
+ paramsType: [
476
+ DataType.U64,
477
+ /* UniffiForeignFutureResultF64 */ DataType.U8Array
478
+ ],
479
+ },
480
+ ForeignFutureCompleteRustBuffer: {
481
+ library: "libslim_bindings",
482
+ retType: DataType.Void,
483
+ paramsType: [
484
+ DataType.U64,
485
+ /* UniffiForeignFutureResultRustBuffer */ DataType.U8Array
486
+ ],
487
+ },
488
+ ForeignFutureCompleteVoid: {
489
+ library: "libslim_bindings",
490
+ retType: DataType.Void,
491
+ paramsType: [
492
+ DataType.U64,
493
+ /* UniffiForeignFutureResultVoid */ DataType.U8Array
494
+ ],
495
+ },
496
+ CallbackInterfaceStreamStreamHandlerMethod0: {
497
+ library: "libslim_bindings",
498
+ retType: DataType.Void,
499
+ paramsType: [
500
+ DataType.U64,
501
+ /* handle */ DataType.U64,
502
+ /* handle */ DataType.U64,
503
+ /* handle */ DataType.U64,
504
+ /* callback */ DataType.External,
505
+ DataType.U64,
506
+ /* MutReference to UniffiForeignFutureDroppedCallbackStruct */ DataType.External
507
+ ],
508
+ },
509
+ CallbackInterfaceStreamUnaryHandlerMethod0: {
510
+ library: "libslim_bindings",
511
+ retType: DataType.Void,
512
+ paramsType: [
513
+ DataType.U64,
514
+ /* handle */ DataType.U64,
515
+ /* handle */ DataType.U64,
516
+ /* callback */ DataType.External,
517
+ DataType.U64,
518
+ /* MutReference to UniffiForeignFutureDroppedCallbackStruct */ DataType.External
519
+ ],
520
+ },
521
+ CallbackInterfaceUnaryStreamHandlerMethod0: {
522
+ library: "libslim_bindings",
523
+ retType: DataType.Void,
524
+ paramsType: [
525
+ DataType.U64,
526
+ DataType_UniffiRustBufferStruct,
527
+ /* handle */ DataType.U64,
528
+ /* handle */ DataType.U64,
529
+ /* callback */ DataType.External,
530
+ DataType.U64,
531
+ /* MutReference to UniffiForeignFutureDroppedCallbackStruct */ DataType.External
532
+ ],
533
+ },
534
+ CallbackInterfaceUnaryUnaryHandlerMethod0: {
535
+ library: "libslim_bindings",
536
+ retType: DataType.Void,
537
+ paramsType: [
538
+ DataType.U64,
539
+ DataType_UniffiRustBufferStruct,
540
+ /* handle */ DataType.U64,
541
+ /* callback */ DataType.External,
542
+ DataType.U64,
543
+ /* MutReference to UniffiForeignFutureDroppedCallbackStruct */ DataType.External
544
+ ],
545
+ },
546
+ uniffi_slim_bindings_fn_clone_app: {
547
+ library: "libslim_bindings",
548
+ retType: /* handle */ DataType.U64,
549
+ paramsType: [
550
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
551
+ ],
552
+ },
553
+ uniffi_slim_bindings_fn_free_app: {
554
+ library: "libslim_bindings",
555
+ retType: DataType.Void,
556
+ paramsType: [
557
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
558
+ ],
559
+ },
560
+ uniffi_slim_bindings_fn_constructor_app_new: {
561
+ library: "libslim_bindings",
562
+ retType: /* handle */ DataType.U64,
563
+ paramsType: [
564
+ /* handle */ DataType.U64,
565
+ DataType_UniffiRustBufferStruct,
566
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
567
+ ],
568
+ },
569
+ uniffi_slim_bindings_fn_constructor_app_new_with_direction: {
570
+ library: "libslim_bindings",
571
+ retType: /* handle */ DataType.U64,
572
+ paramsType: [
573
+ /* handle */ DataType.U64,
574
+ DataType_UniffiRustBufferStruct,
575
+ DataType_UniffiRustBufferStruct,
576
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
577
+ ],
578
+ },
579
+ uniffi_slim_bindings_fn_constructor_app_new_with_secret: {
580
+ library: "libslim_bindings",
581
+ retType: /* handle */ DataType.U64,
582
+ paramsType: [
583
+ /* handle */ DataType.U64,
584
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
585
+ ],
586
+ },
587
+ uniffi_slim_bindings_fn_method_app_create_session: {
588
+ library: "libslim_bindings",
589
+ retType: DataType_UniffiRustBufferStruct,
590
+ paramsType: [
591
+ /* handle */ DataType.U64,
592
+ DataType_UniffiRustBufferStruct,
593
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
594
+ ],
595
+ },
596
+ uniffi_slim_bindings_fn_method_app_create_session_and_wait: {
597
+ library: "libslim_bindings",
598
+ retType: /* handle */ DataType.U64,
599
+ paramsType: [
600
+ /* handle */ DataType.U64,
601
+ DataType_UniffiRustBufferStruct,
602
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
603
+ ],
604
+ },
605
+ uniffi_slim_bindings_fn_method_app_create_session_and_wait_async: {
606
+ library: "libslim_bindings",
607
+ retType: /* handle */ DataType.U64,
608
+ paramsType: [
609
+ /* handle */ DataType.U64,
610
+ DataType_UniffiRustBufferStruct,
611
+ /* handle */ DataType.U64
612
+ ],
613
+ },
614
+ uniffi_slim_bindings_fn_method_app_create_session_async: {
615
+ library: "libslim_bindings",
616
+ retType: /* handle */ DataType.U64,
617
+ paramsType: [
618
+ /* handle */ DataType.U64,
619
+ DataType_UniffiRustBufferStruct,
620
+ /* handle */ DataType.U64
621
+ ],
622
+ },
623
+ uniffi_slim_bindings_fn_method_app_delete_session: {
624
+ library: "libslim_bindings",
625
+ retType: /* handle */ DataType.U64,
626
+ paramsType: [
627
+ /* handle */ DataType.U64,
628
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
629
+ ],
630
+ },
631
+ uniffi_slim_bindings_fn_method_app_delete_session_and_wait: {
632
+ library: "libslim_bindings",
633
+ retType: DataType.Void,
634
+ paramsType: [
635
+ /* handle */ DataType.U64,
636
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
637
+ ],
638
+ },
639
+ uniffi_slim_bindings_fn_method_app_delete_session_and_wait_async: {
640
+ library: "libslim_bindings",
641
+ retType: /* handle */ DataType.U64,
642
+ paramsType: [
643
+ /* handle */ DataType.U64,
644
+ /* handle */ DataType.U64
645
+ ],
646
+ },
647
+ uniffi_slim_bindings_fn_method_app_delete_session_async: {
648
+ library: "libslim_bindings",
649
+ retType: /* handle */ DataType.U64,
650
+ paramsType: [
651
+ /* handle */ DataType.U64,
652
+ /* handle */ DataType.U64
653
+ ],
654
+ },
655
+ uniffi_slim_bindings_fn_method_app_id: {
656
+ library: "libslim_bindings",
657
+ retType: DataType.U64,
658
+ paramsType: [
659
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
660
+ ],
661
+ },
662
+ uniffi_slim_bindings_fn_method_app_listen_for_session: {
663
+ library: "libslim_bindings",
664
+ retType: /* handle */ DataType.U64,
665
+ paramsType: [
666
+ /* handle */ DataType.U64,
667
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
668
+ ],
669
+ },
670
+ uniffi_slim_bindings_fn_method_app_listen_for_session_async: {
671
+ library: "libslim_bindings",
672
+ retType: /* handle */ DataType.U64,
673
+ paramsType: [
674
+ /* handle */ DataType.U64,
675
+ DataType_UniffiRustBufferStruct
676
+ ],
677
+ },
678
+ uniffi_slim_bindings_fn_method_app_name: {
679
+ library: "libslim_bindings",
680
+ retType: /* handle */ DataType.U64,
681
+ paramsType: [
682
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
683
+ ],
684
+ },
685
+ uniffi_slim_bindings_fn_method_app_remove_route: {
686
+ library: "libslim_bindings",
687
+ retType: DataType.Void,
688
+ paramsType: [
689
+ /* handle */ DataType.U64,
690
+ /* handle */ DataType.U64,
691
+ DataType.U64, /* RustCallStatus */ DataType.External
692
+ ],
693
+ },
694
+ uniffi_slim_bindings_fn_method_app_remove_route_async: {
695
+ library: "libslim_bindings",
696
+ retType: /* handle */ DataType.U64,
697
+ paramsType: [
698
+ /* handle */ DataType.U64,
699
+ /* handle */ DataType.U64,
700
+ DataType.U64
701
+ ],
702
+ },
703
+ uniffi_slim_bindings_fn_method_app_set_route: {
704
+ library: "libslim_bindings",
705
+ retType: DataType.Void,
706
+ paramsType: [
707
+ /* handle */ DataType.U64,
708
+ /* handle */ DataType.U64,
709
+ DataType.U64, /* RustCallStatus */ DataType.External
710
+ ],
711
+ },
712
+ uniffi_slim_bindings_fn_method_app_set_route_async: {
713
+ library: "libslim_bindings",
714
+ retType: /* handle */ DataType.U64,
715
+ paramsType: [
716
+ /* handle */ DataType.U64,
717
+ /* handle */ DataType.U64,
718
+ DataType.U64
719
+ ],
720
+ },
721
+ uniffi_slim_bindings_fn_method_app_subscribe: {
722
+ library: "libslim_bindings",
723
+ retType: DataType.Void,
724
+ paramsType: [
725
+ /* handle */ DataType.U64,
726
+ /* handle */ DataType.U64,
727
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
728
+ ],
729
+ },
730
+ uniffi_slim_bindings_fn_method_app_subscribe_async: {
731
+ library: "libslim_bindings",
732
+ retType: /* handle */ DataType.U64,
733
+ paramsType: [
734
+ /* handle */ DataType.U64,
735
+ /* handle */ DataType.U64,
736
+ DataType_UniffiRustBufferStruct
737
+ ],
738
+ },
739
+ uniffi_slim_bindings_fn_method_app_unsubscribe: {
740
+ library: "libslim_bindings",
741
+ retType: DataType.Void,
742
+ paramsType: [
743
+ /* handle */ DataType.U64,
744
+ /* handle */ DataType.U64,
745
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
746
+ ],
747
+ },
748
+ uniffi_slim_bindings_fn_method_app_unsubscribe_async: {
749
+ library: "libslim_bindings",
750
+ retType: /* handle */ DataType.U64,
751
+ paramsType: [
752
+ /* handle */ DataType.U64,
753
+ /* handle */ DataType.U64,
754
+ DataType_UniffiRustBufferStruct
755
+ ],
756
+ },
757
+ uniffi_slim_bindings_fn_clone_completionhandle: {
758
+ library: "libslim_bindings",
759
+ retType: /* handle */ DataType.U64,
760
+ paramsType: [
761
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
762
+ ],
763
+ },
764
+ uniffi_slim_bindings_fn_free_completionhandle: {
765
+ library: "libslim_bindings",
766
+ retType: DataType.Void,
767
+ paramsType: [
768
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
769
+ ],
770
+ },
771
+ uniffi_slim_bindings_fn_method_completionhandle_wait: {
772
+ library: "libslim_bindings",
773
+ retType: DataType.Void,
774
+ paramsType: [
775
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
776
+ ],
777
+ },
778
+ uniffi_slim_bindings_fn_method_completionhandle_wait_async: {
779
+ library: "libslim_bindings",
780
+ retType: /* handle */ DataType.U64,
781
+ paramsType: [
782
+ /* handle */ DataType.U64
783
+ ],
784
+ },
785
+ uniffi_slim_bindings_fn_method_completionhandle_wait_for: {
786
+ library: "libslim_bindings",
787
+ retType: DataType.Void,
788
+ paramsType: [
789
+ /* handle */ DataType.U64,
790
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
791
+ ],
792
+ },
793
+ uniffi_slim_bindings_fn_method_completionhandle_wait_for_async: {
794
+ library: "libslim_bindings",
795
+ retType: /* handle */ DataType.U64,
796
+ paramsType: [
797
+ /* handle */ DataType.U64,
798
+ DataType_UniffiRustBufferStruct
799
+ ],
800
+ },
801
+ uniffi_slim_bindings_fn_clone_name: {
802
+ library: "libslim_bindings",
803
+ retType: /* handle */ DataType.U64,
804
+ paramsType: [
805
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
806
+ ],
807
+ },
808
+ uniffi_slim_bindings_fn_free_name: {
809
+ library: "libslim_bindings",
810
+ retType: DataType.Void,
811
+ paramsType: [
812
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
813
+ ],
814
+ },
815
+ uniffi_slim_bindings_fn_constructor_name_from_string: {
816
+ library: "libslim_bindings",
817
+ retType: /* handle */ DataType.U64,
818
+ paramsType: [
819
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
820
+ ],
821
+ },
822
+ uniffi_slim_bindings_fn_constructor_name_new: {
823
+ library: "libslim_bindings",
824
+ retType: /* handle */ DataType.U64,
825
+ paramsType: [
826
+ DataType_UniffiRustBufferStruct,
827
+ DataType_UniffiRustBufferStruct,
828
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
829
+ ],
830
+ },
831
+ uniffi_slim_bindings_fn_constructor_name_new_with_id: {
832
+ library: "libslim_bindings",
833
+ retType: /* handle */ DataType.U64,
834
+ paramsType: [
835
+ DataType_UniffiRustBufferStruct,
836
+ DataType_UniffiRustBufferStruct,
837
+ DataType_UniffiRustBufferStruct,
838
+ DataType.U64, /* RustCallStatus */ DataType.External
839
+ ],
840
+ },
841
+ uniffi_slim_bindings_fn_method_name_components: {
842
+ library: "libslim_bindings",
843
+ retType: DataType_UniffiRustBufferStruct,
844
+ paramsType: [
845
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
846
+ ],
847
+ },
848
+ uniffi_slim_bindings_fn_method_name_id: {
849
+ library: "libslim_bindings",
850
+ retType: DataType.U64,
851
+ paramsType: [
852
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
853
+ ],
854
+ },
855
+ uniffi_slim_bindings_fn_method_name_uniffi_trait_debug: {
856
+ library: "libslim_bindings",
857
+ retType: DataType_UniffiRustBufferStruct,
858
+ paramsType: [
859
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
860
+ ],
861
+ },
862
+ uniffi_slim_bindings_fn_method_name_uniffi_trait_display: {
863
+ library: "libslim_bindings",
864
+ retType: DataType_UniffiRustBufferStruct,
865
+ paramsType: [
866
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
867
+ ],
868
+ },
869
+ uniffi_slim_bindings_fn_method_name_uniffi_trait_eq_eq: {
870
+ library: "libslim_bindings",
871
+ retType: /* i8 */ DataType.U8,
872
+ paramsType: [
873
+ /* handle */ DataType.U64,
874
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
875
+ ],
876
+ },
877
+ uniffi_slim_bindings_fn_method_name_uniffi_trait_eq_ne: {
878
+ library: "libslim_bindings",
879
+ retType: /* i8 */ DataType.U8,
880
+ paramsType: [
881
+ /* handle */ DataType.U64,
882
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
883
+ ],
884
+ },
885
+ uniffi_slim_bindings_fn_clone_service: {
886
+ library: "libslim_bindings",
887
+ retType: /* handle */ DataType.U64,
888
+ paramsType: [
889
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
890
+ ],
891
+ },
892
+ uniffi_slim_bindings_fn_free_service: {
893
+ library: "libslim_bindings",
894
+ retType: DataType.Void,
895
+ paramsType: [
896
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
897
+ ],
898
+ },
899
+ uniffi_slim_bindings_fn_constructor_service_new: {
900
+ library: "libslim_bindings",
901
+ retType: /* handle */ DataType.U64,
902
+ paramsType: [
903
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
904
+ ],
905
+ },
906
+ uniffi_slim_bindings_fn_constructor_service_new_with_config: {
907
+ library: "libslim_bindings",
908
+ retType: /* handle */ DataType.U64,
909
+ paramsType: [
910
+ DataType_UniffiRustBufferStruct,
911
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
912
+ ],
913
+ },
914
+ uniffi_slim_bindings_fn_method_service_config: {
915
+ library: "libslim_bindings",
916
+ retType: DataType_UniffiRustBufferStruct,
917
+ paramsType: [
918
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
919
+ ],
920
+ },
921
+ uniffi_slim_bindings_fn_method_service_connect: {
922
+ library: "libslim_bindings",
923
+ retType: DataType.U64,
924
+ paramsType: [
925
+ /* handle */ DataType.U64,
926
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
927
+ ],
928
+ },
929
+ uniffi_slim_bindings_fn_method_service_connect_async: {
930
+ library: "libslim_bindings",
931
+ retType: /* handle */ DataType.U64,
932
+ paramsType: [
933
+ /* handle */ DataType.U64,
934
+ DataType_UniffiRustBufferStruct
935
+ ],
936
+ },
937
+ uniffi_slim_bindings_fn_method_service_create_app: {
938
+ library: "libslim_bindings",
939
+ retType: /* handle */ DataType.U64,
940
+ paramsType: [
941
+ /* handle */ DataType.U64,
942
+ /* handle */ DataType.U64,
943
+ DataType_UniffiRustBufferStruct,
944
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
945
+ ],
946
+ },
947
+ uniffi_slim_bindings_fn_method_service_create_app_async: {
948
+ library: "libslim_bindings",
949
+ retType: /* handle */ DataType.U64,
950
+ paramsType: [
951
+ /* handle */ DataType.U64,
952
+ /* handle */ DataType.U64,
953
+ DataType_UniffiRustBufferStruct,
954
+ DataType_UniffiRustBufferStruct
955
+ ],
956
+ },
957
+ uniffi_slim_bindings_fn_method_service_create_app_with_direction: {
958
+ library: "libslim_bindings",
959
+ retType: /* handle */ DataType.U64,
960
+ paramsType: [
961
+ /* handle */ DataType.U64,
962
+ /* handle */ DataType.U64,
963
+ DataType_UniffiRustBufferStruct,
964
+ DataType_UniffiRustBufferStruct,
965
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
966
+ ],
967
+ },
968
+ uniffi_slim_bindings_fn_method_service_create_app_with_direction_async: {
969
+ library: "libslim_bindings",
970
+ retType: /* handle */ DataType.U64,
971
+ paramsType: [
972
+ /* handle */ DataType.U64,
973
+ /* handle */ DataType.U64,
974
+ DataType_UniffiRustBufferStruct,
975
+ DataType_UniffiRustBufferStruct,
976
+ DataType_UniffiRustBufferStruct
977
+ ],
978
+ },
979
+ uniffi_slim_bindings_fn_method_service_create_app_with_secret: {
980
+ library: "libslim_bindings",
981
+ retType: /* handle */ DataType.U64,
982
+ paramsType: [
983
+ /* handle */ DataType.U64,
984
+ /* handle */ DataType.U64,
985
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
986
+ ],
987
+ },
988
+ uniffi_slim_bindings_fn_method_service_create_app_with_secret_async: {
989
+ library: "libslim_bindings",
990
+ retType: /* handle */ DataType.U64,
991
+ paramsType: [
992
+ /* handle */ DataType.U64,
993
+ /* handle */ DataType.U64,
994
+ DataType_UniffiRustBufferStruct
995
+ ],
996
+ },
997
+ uniffi_slim_bindings_fn_method_service_disconnect: {
998
+ library: "libslim_bindings",
999
+ retType: DataType.Void,
1000
+ paramsType: [
1001
+ /* handle */ DataType.U64,
1002
+ DataType.U64, /* RustCallStatus */ DataType.External
1003
+ ],
1004
+ },
1005
+ uniffi_slim_bindings_fn_method_service_get_connection_id: {
1006
+ library: "libslim_bindings",
1007
+ retType: DataType_UniffiRustBufferStruct,
1008
+ paramsType: [
1009
+ /* handle */ DataType.U64,
1010
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
1011
+ ],
1012
+ },
1013
+ uniffi_slim_bindings_fn_method_service_get_name: {
1014
+ library: "libslim_bindings",
1015
+ retType: DataType_UniffiRustBufferStruct,
1016
+ paramsType: [
1017
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1018
+ ],
1019
+ },
1020
+ uniffi_slim_bindings_fn_method_service_run: {
1021
+ library: "libslim_bindings",
1022
+ retType: DataType.Void,
1023
+ paramsType: [
1024
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1025
+ ],
1026
+ },
1027
+ uniffi_slim_bindings_fn_method_service_run_async: {
1028
+ library: "libslim_bindings",
1029
+ retType: /* handle */ DataType.U64,
1030
+ paramsType: [
1031
+ /* handle */ DataType.U64
1032
+ ],
1033
+ },
1034
+ uniffi_slim_bindings_fn_method_service_run_server: {
1035
+ library: "libslim_bindings",
1036
+ retType: DataType.Void,
1037
+ paramsType: [
1038
+ /* handle */ DataType.U64,
1039
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
1040
+ ],
1041
+ },
1042
+ uniffi_slim_bindings_fn_method_service_run_server_async: {
1043
+ library: "libslim_bindings",
1044
+ retType: /* handle */ DataType.U64,
1045
+ paramsType: [
1046
+ /* handle */ DataType.U64,
1047
+ DataType_UniffiRustBufferStruct
1048
+ ],
1049
+ },
1050
+ uniffi_slim_bindings_fn_method_service_shutdown: {
1051
+ library: "libslim_bindings",
1052
+ retType: DataType.Void,
1053
+ paramsType: [
1054
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1055
+ ],
1056
+ },
1057
+ uniffi_slim_bindings_fn_method_service_shutdown_async: {
1058
+ library: "libslim_bindings",
1059
+ retType: /* handle */ DataType.U64,
1060
+ paramsType: [
1061
+ /* handle */ DataType.U64
1062
+ ],
1063
+ },
1064
+ uniffi_slim_bindings_fn_method_service_stop_server: {
1065
+ library: "libslim_bindings",
1066
+ retType: DataType.Void,
1067
+ paramsType: [
1068
+ /* handle */ DataType.U64,
1069
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
1070
+ ],
1071
+ },
1072
+ uniffi_slim_bindings_fn_clone_session: {
1073
+ library: "libslim_bindings",
1074
+ retType: /* handle */ DataType.U64,
1075
+ paramsType: [
1076
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1077
+ ],
1078
+ },
1079
+ uniffi_slim_bindings_fn_free_session: {
1080
+ library: "libslim_bindings",
1081
+ retType: DataType.Void,
1082
+ paramsType: [
1083
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1084
+ ],
1085
+ },
1086
+ uniffi_slim_bindings_fn_method_session_config: {
1087
+ library: "libslim_bindings",
1088
+ retType: DataType_UniffiRustBufferStruct,
1089
+ paramsType: [
1090
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1091
+ ],
1092
+ },
1093
+ uniffi_slim_bindings_fn_method_session_destination: {
1094
+ library: "libslim_bindings",
1095
+ retType: /* handle */ DataType.U64,
1096
+ paramsType: [
1097
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1098
+ ],
1099
+ },
1100
+ uniffi_slim_bindings_fn_method_session_get_message: {
1101
+ library: "libslim_bindings",
1102
+ retType: DataType_UniffiRustBufferStruct,
1103
+ paramsType: [
1104
+ /* handle */ DataType.U64,
1105
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
1106
+ ],
1107
+ },
1108
+ uniffi_slim_bindings_fn_method_session_get_message_async: {
1109
+ library: "libslim_bindings",
1110
+ retType: /* handle */ DataType.U64,
1111
+ paramsType: [
1112
+ /* handle */ DataType.U64,
1113
+ DataType_UniffiRustBufferStruct
1114
+ ],
1115
+ },
1116
+ uniffi_slim_bindings_fn_method_session_invite: {
1117
+ library: "libslim_bindings",
1118
+ retType: /* handle */ DataType.U64,
1119
+ paramsType: [
1120
+ /* handle */ DataType.U64,
1121
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1122
+ ],
1123
+ },
1124
+ uniffi_slim_bindings_fn_method_session_invite_and_wait: {
1125
+ library: "libslim_bindings",
1126
+ retType: DataType.Void,
1127
+ paramsType: [
1128
+ /* handle */ DataType.U64,
1129
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1130
+ ],
1131
+ },
1132
+ uniffi_slim_bindings_fn_method_session_invite_and_wait_async: {
1133
+ library: "libslim_bindings",
1134
+ retType: /* handle */ DataType.U64,
1135
+ paramsType: [
1136
+ /* handle */ DataType.U64,
1137
+ /* handle */ DataType.U64
1138
+ ],
1139
+ },
1140
+ uniffi_slim_bindings_fn_method_session_invite_async: {
1141
+ library: "libslim_bindings",
1142
+ retType: /* handle */ DataType.U64,
1143
+ paramsType: [
1144
+ /* handle */ DataType.U64,
1145
+ /* handle */ DataType.U64
1146
+ ],
1147
+ },
1148
+ uniffi_slim_bindings_fn_method_session_is_initiator: {
1149
+ library: "libslim_bindings",
1150
+ retType: /* i8 */ DataType.U8,
1151
+ paramsType: [
1152
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1153
+ ],
1154
+ },
1155
+ uniffi_slim_bindings_fn_method_session_metadata: {
1156
+ library: "libslim_bindings",
1157
+ retType: DataType_UniffiRustBufferStruct,
1158
+ paramsType: [
1159
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1160
+ ],
1161
+ },
1162
+ uniffi_slim_bindings_fn_method_session_participants_list: {
1163
+ library: "libslim_bindings",
1164
+ retType: DataType_UniffiRustBufferStruct,
1165
+ paramsType: [
1166
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1167
+ ],
1168
+ },
1169
+ uniffi_slim_bindings_fn_method_session_participants_list_async: {
1170
+ library: "libslim_bindings",
1171
+ retType: /* handle */ DataType.U64,
1172
+ paramsType: [
1173
+ /* handle */ DataType.U64
1174
+ ],
1175
+ },
1176
+ uniffi_slim_bindings_fn_method_session_publish: {
1177
+ library: "libslim_bindings",
1178
+ retType: /* handle */ DataType.U64,
1179
+ paramsType: [
1180
+ /* handle */ DataType.U64,
1181
+ DataType_UniffiRustBufferStruct,
1182
+ DataType_UniffiRustBufferStruct,
1183
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
1184
+ ],
1185
+ },
1186
+ uniffi_slim_bindings_fn_method_session_publish_and_wait: {
1187
+ library: "libslim_bindings",
1188
+ retType: DataType.Void,
1189
+ paramsType: [
1190
+ /* handle */ DataType.U64,
1191
+ DataType_UniffiRustBufferStruct,
1192
+ DataType_UniffiRustBufferStruct,
1193
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
1194
+ ],
1195
+ },
1196
+ uniffi_slim_bindings_fn_method_session_publish_and_wait_async: {
1197
+ library: "libslim_bindings",
1198
+ retType: /* handle */ DataType.U64,
1199
+ paramsType: [
1200
+ /* handle */ DataType.U64,
1201
+ DataType_UniffiRustBufferStruct,
1202
+ DataType_UniffiRustBufferStruct,
1203
+ DataType_UniffiRustBufferStruct
1204
+ ],
1205
+ },
1206
+ uniffi_slim_bindings_fn_method_session_publish_async: {
1207
+ library: "libslim_bindings",
1208
+ retType: /* handle */ DataType.U64,
1209
+ paramsType: [
1210
+ /* handle */ DataType.U64,
1211
+ DataType_UniffiRustBufferStruct,
1212
+ DataType_UniffiRustBufferStruct,
1213
+ DataType_UniffiRustBufferStruct
1214
+ ],
1215
+ },
1216
+ uniffi_slim_bindings_fn_method_session_publish_to: {
1217
+ library: "libslim_bindings",
1218
+ retType: /* handle */ DataType.U64,
1219
+ paramsType: [
1220
+ /* handle */ DataType.U64,
1221
+ DataType_UniffiRustBufferStruct,
1222
+ DataType_UniffiRustBufferStruct,
1223
+ DataType_UniffiRustBufferStruct,
1224
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
1225
+ ],
1226
+ },
1227
+ uniffi_slim_bindings_fn_method_session_publish_to_and_wait: {
1228
+ library: "libslim_bindings",
1229
+ retType: DataType.Void,
1230
+ paramsType: [
1231
+ /* handle */ DataType.U64,
1232
+ DataType_UniffiRustBufferStruct,
1233
+ DataType_UniffiRustBufferStruct,
1234
+ DataType_UniffiRustBufferStruct,
1235
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
1236
+ ],
1237
+ },
1238
+ uniffi_slim_bindings_fn_method_session_publish_to_and_wait_async: {
1239
+ library: "libslim_bindings",
1240
+ retType: /* handle */ DataType.U64,
1241
+ paramsType: [
1242
+ /* handle */ DataType.U64,
1243
+ DataType_UniffiRustBufferStruct,
1244
+ DataType_UniffiRustBufferStruct,
1245
+ DataType_UniffiRustBufferStruct,
1246
+ DataType_UniffiRustBufferStruct
1247
+ ],
1248
+ },
1249
+ uniffi_slim_bindings_fn_method_session_publish_to_async: {
1250
+ library: "libslim_bindings",
1251
+ retType: /* handle */ DataType.U64,
1252
+ paramsType: [
1253
+ /* handle */ DataType.U64,
1254
+ DataType_UniffiRustBufferStruct,
1255
+ DataType_UniffiRustBufferStruct,
1256
+ DataType_UniffiRustBufferStruct,
1257
+ DataType_UniffiRustBufferStruct
1258
+ ],
1259
+ },
1260
+ uniffi_slim_bindings_fn_method_session_publish_with_params: {
1261
+ library: "libslim_bindings",
1262
+ retType: DataType.Void,
1263
+ paramsType: [
1264
+ /* handle */ DataType.U64,
1265
+ /* handle */ DataType.U64,
1266
+ /* u32 */ DataType.U64,
1267
+ DataType_UniffiRustBufferStruct,
1268
+ DataType_UniffiRustBufferStruct,
1269
+ DataType_UniffiRustBufferStruct,
1270
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
1271
+ ],
1272
+ },
1273
+ uniffi_slim_bindings_fn_method_session_publish_with_params_async: {
1274
+ library: "libslim_bindings",
1275
+ retType: /* handle */ DataType.U64,
1276
+ paramsType: [
1277
+ /* handle */ DataType.U64,
1278
+ /* handle */ DataType.U64,
1279
+ /* u32 */ DataType.U64,
1280
+ DataType_UniffiRustBufferStruct,
1281
+ DataType_UniffiRustBufferStruct,
1282
+ DataType_UniffiRustBufferStruct,
1283
+ DataType_UniffiRustBufferStruct
1284
+ ],
1285
+ },
1286
+ uniffi_slim_bindings_fn_method_session_remove: {
1287
+ library: "libslim_bindings",
1288
+ retType: /* handle */ DataType.U64,
1289
+ paramsType: [
1290
+ /* handle */ DataType.U64,
1291
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1292
+ ],
1293
+ },
1294
+ uniffi_slim_bindings_fn_method_session_remove_and_wait: {
1295
+ library: "libslim_bindings",
1296
+ retType: DataType.Void,
1297
+ paramsType: [
1298
+ /* handle */ DataType.U64,
1299
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1300
+ ],
1301
+ },
1302
+ uniffi_slim_bindings_fn_method_session_remove_and_wait_async: {
1303
+ library: "libslim_bindings",
1304
+ retType: /* handle */ DataType.U64,
1305
+ paramsType: [
1306
+ /* handle */ DataType.U64,
1307
+ /* handle */ DataType.U64
1308
+ ],
1309
+ },
1310
+ uniffi_slim_bindings_fn_method_session_remove_async: {
1311
+ library: "libslim_bindings",
1312
+ retType: /* handle */ DataType.U64,
1313
+ paramsType: [
1314
+ /* handle */ DataType.U64,
1315
+ /* handle */ DataType.U64
1316
+ ],
1317
+ },
1318
+ uniffi_slim_bindings_fn_method_session_session_id: {
1319
+ library: "libslim_bindings",
1320
+ retType: /* u32 */ DataType.U64,
1321
+ paramsType: [
1322
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1323
+ ],
1324
+ },
1325
+ uniffi_slim_bindings_fn_method_session_session_type: {
1326
+ library: "libslim_bindings",
1327
+ retType: DataType_UniffiRustBufferStruct,
1328
+ paramsType: [
1329
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1330
+ ],
1331
+ },
1332
+ uniffi_slim_bindings_fn_method_session_source: {
1333
+ library: "libslim_bindings",
1334
+ retType: /* handle */ DataType.U64,
1335
+ paramsType: [
1336
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1337
+ ],
1338
+ },
1339
+ uniffi_slim_bindings_fn_clone_channel: {
1340
+ library: "libslim_bindings",
1341
+ retType: /* handle */ DataType.U64,
1342
+ paramsType: [
1343
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1344
+ ],
1345
+ },
1346
+ uniffi_slim_bindings_fn_free_channel: {
1347
+ library: "libslim_bindings",
1348
+ retType: DataType.Void,
1349
+ paramsType: [
1350
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1351
+ ],
1352
+ },
1353
+ uniffi_slim_bindings_fn_constructor_channel_new: {
1354
+ library: "libslim_bindings",
1355
+ retType: /* handle */ DataType.U64,
1356
+ paramsType: [
1357
+ /* handle */ DataType.U64,
1358
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1359
+ ],
1360
+ },
1361
+ uniffi_slim_bindings_fn_constructor_channel_new_group: {
1362
+ library: "libslim_bindings",
1363
+ retType: /* handle */ DataType.U64,
1364
+ paramsType: [
1365
+ /* handle */ DataType.U64,
1366
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
1367
+ ],
1368
+ },
1369
+ uniffi_slim_bindings_fn_constructor_channel_new_group_with_connection: {
1370
+ library: "libslim_bindings",
1371
+ retType: /* handle */ DataType.U64,
1372
+ paramsType: [
1373
+ /* handle */ DataType.U64,
1374
+ DataType_UniffiRustBufferStruct,
1375
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
1376
+ ],
1377
+ },
1378
+ uniffi_slim_bindings_fn_constructor_channel_new_with_connection: {
1379
+ library: "libslim_bindings",
1380
+ retType: /* handle */ DataType.U64,
1381
+ paramsType: [
1382
+ /* handle */ DataType.U64,
1383
+ /* handle */ DataType.U64,
1384
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
1385
+ ],
1386
+ },
1387
+ uniffi_slim_bindings_fn_method_channel_call_multicast_stream_stream: {
1388
+ library: "libslim_bindings",
1389
+ retType: /* handle */ DataType.U64,
1390
+ paramsType: [
1391
+ /* handle */ DataType.U64,
1392
+ DataType_UniffiRustBufferStruct,
1393
+ DataType_UniffiRustBufferStruct,
1394
+ DataType_UniffiRustBufferStruct,
1395
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
1396
+ ],
1397
+ },
1398
+ uniffi_slim_bindings_fn_method_channel_call_multicast_stream_unary: {
1399
+ library: "libslim_bindings",
1400
+ retType: /* handle */ DataType.U64,
1401
+ paramsType: [
1402
+ /* handle */ DataType.U64,
1403
+ DataType_UniffiRustBufferStruct,
1404
+ DataType_UniffiRustBufferStruct,
1405
+ DataType_UniffiRustBufferStruct,
1406
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
1407
+ ],
1408
+ },
1409
+ uniffi_slim_bindings_fn_method_channel_call_multicast_unary: {
1410
+ library: "libslim_bindings",
1411
+ retType: /* handle */ DataType.U64,
1412
+ paramsType: [
1413
+ /* handle */ DataType.U64,
1414
+ DataType_UniffiRustBufferStruct,
1415
+ DataType_UniffiRustBufferStruct,
1416
+ DataType_UniffiRustBufferStruct,
1417
+ DataType_UniffiRustBufferStruct,
1418
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
1419
+ ],
1420
+ },
1421
+ uniffi_slim_bindings_fn_method_channel_call_multicast_unary_async: {
1422
+ library: "libslim_bindings",
1423
+ retType: /* handle */ DataType.U64,
1424
+ paramsType: [
1425
+ /* handle */ DataType.U64,
1426
+ DataType_UniffiRustBufferStruct,
1427
+ DataType_UniffiRustBufferStruct,
1428
+ DataType_UniffiRustBufferStruct,
1429
+ DataType_UniffiRustBufferStruct,
1430
+ DataType_UniffiRustBufferStruct
1431
+ ],
1432
+ },
1433
+ uniffi_slim_bindings_fn_method_channel_call_multicast_unary_stream: {
1434
+ library: "libslim_bindings",
1435
+ retType: /* handle */ DataType.U64,
1436
+ paramsType: [
1437
+ /* handle */ DataType.U64,
1438
+ DataType_UniffiRustBufferStruct,
1439
+ DataType_UniffiRustBufferStruct,
1440
+ DataType_UniffiRustBufferStruct,
1441
+ DataType_UniffiRustBufferStruct,
1442
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
1443
+ ],
1444
+ },
1445
+ uniffi_slim_bindings_fn_method_channel_call_multicast_unary_stream_async: {
1446
+ library: "libslim_bindings",
1447
+ retType: /* handle */ DataType.U64,
1448
+ paramsType: [
1449
+ /* handle */ DataType.U64,
1450
+ DataType_UniffiRustBufferStruct,
1451
+ DataType_UniffiRustBufferStruct,
1452
+ DataType_UniffiRustBufferStruct,
1453
+ DataType_UniffiRustBufferStruct,
1454
+ DataType_UniffiRustBufferStruct
1455
+ ],
1456
+ },
1457
+ uniffi_slim_bindings_fn_method_channel_call_stream_stream: {
1458
+ library: "libslim_bindings",
1459
+ retType: /* handle */ DataType.U64,
1460
+ paramsType: [
1461
+ /* handle */ DataType.U64,
1462
+ DataType_UniffiRustBufferStruct,
1463
+ DataType_UniffiRustBufferStruct,
1464
+ DataType_UniffiRustBufferStruct,
1465
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
1466
+ ],
1467
+ },
1468
+ uniffi_slim_bindings_fn_method_channel_call_stream_unary: {
1469
+ library: "libslim_bindings",
1470
+ retType: /* handle */ DataType.U64,
1471
+ paramsType: [
1472
+ /* handle */ DataType.U64,
1473
+ DataType_UniffiRustBufferStruct,
1474
+ DataType_UniffiRustBufferStruct,
1475
+ DataType_UniffiRustBufferStruct,
1476
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
1477
+ ],
1478
+ },
1479
+ uniffi_slim_bindings_fn_method_channel_call_unary: {
1480
+ library: "libslim_bindings",
1481
+ retType: DataType_UniffiRustBufferStruct,
1482
+ paramsType: [
1483
+ /* handle */ DataType.U64,
1484
+ DataType_UniffiRustBufferStruct,
1485
+ DataType_UniffiRustBufferStruct,
1486
+ DataType_UniffiRustBufferStruct,
1487
+ DataType_UniffiRustBufferStruct,
1488
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
1489
+ ],
1490
+ },
1491
+ uniffi_slim_bindings_fn_method_channel_call_unary_async: {
1492
+ library: "libslim_bindings",
1493
+ retType: /* handle */ DataType.U64,
1494
+ paramsType: [
1495
+ /* handle */ DataType.U64,
1496
+ DataType_UniffiRustBufferStruct,
1497
+ DataType_UniffiRustBufferStruct,
1498
+ DataType_UniffiRustBufferStruct,
1499
+ DataType_UniffiRustBufferStruct,
1500
+ DataType_UniffiRustBufferStruct
1501
+ ],
1502
+ },
1503
+ uniffi_slim_bindings_fn_method_channel_call_unary_stream: {
1504
+ library: "libslim_bindings",
1505
+ retType: /* handle */ DataType.U64,
1506
+ paramsType: [
1507
+ /* handle */ DataType.U64,
1508
+ DataType_UniffiRustBufferStruct,
1509
+ DataType_UniffiRustBufferStruct,
1510
+ DataType_UniffiRustBufferStruct,
1511
+ DataType_UniffiRustBufferStruct,
1512
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
1513
+ ],
1514
+ },
1515
+ uniffi_slim_bindings_fn_method_channel_call_unary_stream_async: {
1516
+ library: "libslim_bindings",
1517
+ retType: /* handle */ DataType.U64,
1518
+ paramsType: [
1519
+ /* handle */ DataType.U64,
1520
+ DataType_UniffiRustBufferStruct,
1521
+ DataType_UniffiRustBufferStruct,
1522
+ DataType_UniffiRustBufferStruct,
1523
+ DataType_UniffiRustBufferStruct,
1524
+ DataType_UniffiRustBufferStruct
1525
+ ],
1526
+ },
1527
+ uniffi_slim_bindings_fn_method_channel_close: {
1528
+ library: "libslim_bindings",
1529
+ retType: DataType.Void,
1530
+ paramsType: [
1531
+ /* handle */ DataType.U64,
1532
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
1533
+ ],
1534
+ },
1535
+ uniffi_slim_bindings_fn_method_channel_close_async: {
1536
+ library: "libslim_bindings",
1537
+ retType: /* handle */ DataType.U64,
1538
+ paramsType: [
1539
+ /* handle */ DataType.U64,
1540
+ DataType_UniffiRustBufferStruct
1541
+ ],
1542
+ },
1543
+ uniffi_slim_bindings_fn_clone_context: {
1544
+ library: "libslim_bindings",
1545
+ retType: /* handle */ DataType.U64,
1546
+ paramsType: [
1547
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1548
+ ],
1549
+ },
1550
+ uniffi_slim_bindings_fn_free_context: {
1551
+ library: "libslim_bindings",
1552
+ retType: DataType.Void,
1553
+ paramsType: [
1554
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1555
+ ],
1556
+ },
1557
+ uniffi_slim_bindings_fn_method_context_deadline: {
1558
+ library: "libslim_bindings",
1559
+ retType: DataType_UniffiRustBufferStruct,
1560
+ paramsType: [
1561
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1562
+ ],
1563
+ },
1564
+ uniffi_slim_bindings_fn_method_context_is_deadline_exceeded: {
1565
+ library: "libslim_bindings",
1566
+ retType: /* i8 */ DataType.U8,
1567
+ paramsType: [
1568
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1569
+ ],
1570
+ },
1571
+ uniffi_slim_bindings_fn_method_context_metadata: {
1572
+ library: "libslim_bindings",
1573
+ retType: DataType_UniffiRustBufferStruct,
1574
+ paramsType: [
1575
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1576
+ ],
1577
+ },
1578
+ uniffi_slim_bindings_fn_method_context_remaining_time: {
1579
+ library: "libslim_bindings",
1580
+ retType: DataType_UniffiRustBufferStruct,
1581
+ paramsType: [
1582
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1583
+ ],
1584
+ },
1585
+ uniffi_slim_bindings_fn_method_context_session_id: {
1586
+ library: "libslim_bindings",
1587
+ retType: DataType_UniffiRustBufferStruct,
1588
+ paramsType: [
1589
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1590
+ ],
1591
+ },
1592
+ uniffi_slim_bindings_fn_clone_streamstreamhandler: {
1593
+ library: "libslim_bindings",
1594
+ retType: /* handle */ DataType.U64,
1595
+ paramsType: [
1596
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1597
+ ],
1598
+ },
1599
+ uniffi_slim_bindings_fn_free_streamstreamhandler: {
1600
+ library: "libslim_bindings",
1601
+ retType: DataType.Void,
1602
+ paramsType: [
1603
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1604
+ ],
1605
+ },
1606
+ uniffi_slim_bindings_fn_init_callback_vtable_streamstreamhandler: {
1607
+ library: "libslim_bindings",
1608
+ retType: DataType.Void,
1609
+ paramsType: [
1610
+ /* Reference to UniffiVTableCallbackInterfaceStreamStreamHandler */ DataType.External
1611
+ ],
1612
+ },
1613
+ uniffi_slim_bindings_fn_method_streamstreamhandler_handle: {
1614
+ library: "libslim_bindings",
1615
+ retType: /* handle */ DataType.U64,
1616
+ paramsType: [
1617
+ /* handle */ DataType.U64,
1618
+ /* handle */ DataType.U64,
1619
+ /* handle */ DataType.U64,
1620
+ /* handle */ DataType.U64
1621
+ ],
1622
+ },
1623
+ uniffi_slim_bindings_fn_clone_streamunaryhandler: {
1624
+ library: "libslim_bindings",
1625
+ retType: /* handle */ DataType.U64,
1626
+ paramsType: [
1627
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1628
+ ],
1629
+ },
1630
+ uniffi_slim_bindings_fn_free_streamunaryhandler: {
1631
+ library: "libslim_bindings",
1632
+ retType: DataType.Void,
1633
+ paramsType: [
1634
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1635
+ ],
1636
+ },
1637
+ uniffi_slim_bindings_fn_init_callback_vtable_streamunaryhandler: {
1638
+ library: "libslim_bindings",
1639
+ retType: DataType.Void,
1640
+ paramsType: [
1641
+ /* Reference to UniffiVTableCallbackInterfaceStreamUnaryHandler */ DataType.External
1642
+ ],
1643
+ },
1644
+ uniffi_slim_bindings_fn_method_streamunaryhandler_handle: {
1645
+ library: "libslim_bindings",
1646
+ retType: /* handle */ DataType.U64,
1647
+ paramsType: [
1648
+ /* handle */ DataType.U64,
1649
+ /* handle */ DataType.U64,
1650
+ /* handle */ DataType.U64
1651
+ ],
1652
+ },
1653
+ uniffi_slim_bindings_fn_clone_unarystreamhandler: {
1654
+ library: "libslim_bindings",
1655
+ retType: /* handle */ DataType.U64,
1656
+ paramsType: [
1657
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1658
+ ],
1659
+ },
1660
+ uniffi_slim_bindings_fn_free_unarystreamhandler: {
1661
+ library: "libslim_bindings",
1662
+ retType: DataType.Void,
1663
+ paramsType: [
1664
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1665
+ ],
1666
+ },
1667
+ uniffi_slim_bindings_fn_init_callback_vtable_unarystreamhandler: {
1668
+ library: "libslim_bindings",
1669
+ retType: DataType.Void,
1670
+ paramsType: [
1671
+ /* Reference to UniffiVTableCallbackInterfaceUnaryStreamHandler */ DataType.External
1672
+ ],
1673
+ },
1674
+ uniffi_slim_bindings_fn_method_unarystreamhandler_handle: {
1675
+ library: "libslim_bindings",
1676
+ retType: /* handle */ DataType.U64,
1677
+ paramsType: [
1678
+ /* handle */ DataType.U64,
1679
+ DataType_UniffiRustBufferStruct,
1680
+ /* handle */ DataType.U64,
1681
+ /* handle */ DataType.U64
1682
+ ],
1683
+ },
1684
+ uniffi_slim_bindings_fn_clone_unaryunaryhandler: {
1685
+ library: "libslim_bindings",
1686
+ retType: /* handle */ DataType.U64,
1687
+ paramsType: [
1688
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1689
+ ],
1690
+ },
1691
+ uniffi_slim_bindings_fn_free_unaryunaryhandler: {
1692
+ library: "libslim_bindings",
1693
+ retType: DataType.Void,
1694
+ paramsType: [
1695
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1696
+ ],
1697
+ },
1698
+ uniffi_slim_bindings_fn_init_callback_vtable_unaryunaryhandler: {
1699
+ library: "libslim_bindings",
1700
+ retType: DataType.Void,
1701
+ paramsType: [
1702
+ /* Reference to UniffiVTableCallbackInterfaceUnaryUnaryHandler */ DataType.External
1703
+ ],
1704
+ },
1705
+ uniffi_slim_bindings_fn_method_unaryunaryhandler_handle: {
1706
+ library: "libslim_bindings",
1707
+ retType: /* handle */ DataType.U64,
1708
+ paramsType: [
1709
+ /* handle */ DataType.U64,
1710
+ DataType_UniffiRustBufferStruct,
1711
+ /* handle */ DataType.U64
1712
+ ],
1713
+ },
1714
+ uniffi_slim_bindings_fn_clone_server: {
1715
+ library: "libslim_bindings",
1716
+ retType: /* handle */ DataType.U64,
1717
+ paramsType: [
1718
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1719
+ ],
1720
+ },
1721
+ uniffi_slim_bindings_fn_free_server: {
1722
+ library: "libslim_bindings",
1723
+ retType: DataType.Void,
1724
+ paramsType: [
1725
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1726
+ ],
1727
+ },
1728
+ uniffi_slim_bindings_fn_constructor_server_new: {
1729
+ library: "libslim_bindings",
1730
+ retType: /* handle */ DataType.U64,
1731
+ paramsType: [
1732
+ /* handle */ DataType.U64,
1733
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1734
+ ],
1735
+ },
1736
+ uniffi_slim_bindings_fn_constructor_server_new_with_connection: {
1737
+ library: "libslim_bindings",
1738
+ retType: /* handle */ DataType.U64,
1739
+ paramsType: [
1740
+ /* handle */ DataType.U64,
1741
+ /* handle */ DataType.U64,
1742
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
1743
+ ],
1744
+ },
1745
+ uniffi_slim_bindings_fn_method_server_register_stream_stream: {
1746
+ library: "libslim_bindings",
1747
+ retType: DataType.Void,
1748
+ paramsType: [
1749
+ /* handle */ DataType.U64,
1750
+ DataType_UniffiRustBufferStruct,
1751
+ DataType_UniffiRustBufferStruct,
1752
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1753
+ ],
1754
+ },
1755
+ uniffi_slim_bindings_fn_method_server_register_stream_unary: {
1756
+ library: "libslim_bindings",
1757
+ retType: DataType.Void,
1758
+ paramsType: [
1759
+ /* handle */ DataType.U64,
1760
+ DataType_UniffiRustBufferStruct,
1761
+ DataType_UniffiRustBufferStruct,
1762
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1763
+ ],
1764
+ },
1765
+ uniffi_slim_bindings_fn_method_server_register_unary_stream: {
1766
+ library: "libslim_bindings",
1767
+ retType: DataType.Void,
1768
+ paramsType: [
1769
+ /* handle */ DataType.U64,
1770
+ DataType_UniffiRustBufferStruct,
1771
+ DataType_UniffiRustBufferStruct,
1772
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1773
+ ],
1774
+ },
1775
+ uniffi_slim_bindings_fn_method_server_register_unary_unary: {
1776
+ library: "libslim_bindings",
1777
+ retType: DataType.Void,
1778
+ paramsType: [
1779
+ /* handle */ DataType.U64,
1780
+ DataType_UniffiRustBufferStruct,
1781
+ DataType_UniffiRustBufferStruct,
1782
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1783
+ ],
1784
+ },
1785
+ uniffi_slim_bindings_fn_method_server_serve: {
1786
+ library: "libslim_bindings",
1787
+ retType: DataType.Void,
1788
+ paramsType: [
1789
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1790
+ ],
1791
+ },
1792
+ uniffi_slim_bindings_fn_method_server_serve_async: {
1793
+ library: "libslim_bindings",
1794
+ retType: /* handle */ DataType.U64,
1795
+ paramsType: [
1796
+ /* handle */ DataType.U64
1797
+ ],
1798
+ },
1799
+ uniffi_slim_bindings_fn_method_server_shutdown: {
1800
+ library: "libslim_bindings",
1801
+ retType: DataType.Void,
1802
+ paramsType: [
1803
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1804
+ ],
1805
+ },
1806
+ uniffi_slim_bindings_fn_method_server_shutdown_async: {
1807
+ library: "libslim_bindings",
1808
+ retType: /* handle */ DataType.U64,
1809
+ paramsType: [
1810
+ /* handle */ DataType.U64
1811
+ ],
1812
+ },
1813
+ uniffi_slim_bindings_fn_clone_bidistreamhandler: {
1814
+ library: "libslim_bindings",
1815
+ retType: /* handle */ DataType.U64,
1816
+ paramsType: [
1817
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1818
+ ],
1819
+ },
1820
+ uniffi_slim_bindings_fn_free_bidistreamhandler: {
1821
+ library: "libslim_bindings",
1822
+ retType: DataType.Void,
1823
+ paramsType: [
1824
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1825
+ ],
1826
+ },
1827
+ uniffi_slim_bindings_fn_method_bidistreamhandler_close_send: {
1828
+ library: "libslim_bindings",
1829
+ retType: DataType.Void,
1830
+ paramsType: [
1831
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1832
+ ],
1833
+ },
1834
+ uniffi_slim_bindings_fn_method_bidistreamhandler_close_send_async: {
1835
+ library: "libslim_bindings",
1836
+ retType: /* handle */ DataType.U64,
1837
+ paramsType: [
1838
+ /* handle */ DataType.U64
1839
+ ],
1840
+ },
1841
+ uniffi_slim_bindings_fn_method_bidistreamhandler_recv: {
1842
+ library: "libslim_bindings",
1843
+ retType: DataType_UniffiRustBufferStruct,
1844
+ paramsType: [
1845
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1846
+ ],
1847
+ },
1848
+ uniffi_slim_bindings_fn_method_bidistreamhandler_recv_async: {
1849
+ library: "libslim_bindings",
1850
+ retType: /* handle */ DataType.U64,
1851
+ paramsType: [
1852
+ /* handle */ DataType.U64
1853
+ ],
1854
+ },
1855
+ uniffi_slim_bindings_fn_method_bidistreamhandler_send: {
1856
+ library: "libslim_bindings",
1857
+ retType: DataType.Void,
1858
+ paramsType: [
1859
+ /* handle */ DataType.U64,
1860
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
1861
+ ],
1862
+ },
1863
+ uniffi_slim_bindings_fn_method_bidistreamhandler_send_async: {
1864
+ library: "libslim_bindings",
1865
+ retType: /* handle */ DataType.U64,
1866
+ paramsType: [
1867
+ /* handle */ DataType.U64,
1868
+ DataType_UniffiRustBufferStruct
1869
+ ],
1870
+ },
1871
+ uniffi_slim_bindings_fn_clone_multicastbidistreamhandler: {
1872
+ library: "libslim_bindings",
1873
+ retType: /* handle */ DataType.U64,
1874
+ paramsType: [
1875
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1876
+ ],
1877
+ },
1878
+ uniffi_slim_bindings_fn_free_multicastbidistreamhandler: {
1879
+ library: "libslim_bindings",
1880
+ retType: DataType.Void,
1881
+ paramsType: [
1882
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1883
+ ],
1884
+ },
1885
+ uniffi_slim_bindings_fn_method_multicastbidistreamhandler_close_send: {
1886
+ library: "libslim_bindings",
1887
+ retType: DataType.Void,
1888
+ paramsType: [
1889
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1890
+ ],
1891
+ },
1892
+ uniffi_slim_bindings_fn_method_multicastbidistreamhandler_close_send_async: {
1893
+ library: "libslim_bindings",
1894
+ retType: /* handle */ DataType.U64,
1895
+ paramsType: [
1896
+ /* handle */ DataType.U64
1897
+ ],
1898
+ },
1899
+ uniffi_slim_bindings_fn_method_multicastbidistreamhandler_recv: {
1900
+ library: "libslim_bindings",
1901
+ retType: DataType_UniffiRustBufferStruct,
1902
+ paramsType: [
1903
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1904
+ ],
1905
+ },
1906
+ uniffi_slim_bindings_fn_method_multicastbidistreamhandler_recv_async: {
1907
+ library: "libslim_bindings",
1908
+ retType: /* handle */ DataType.U64,
1909
+ paramsType: [
1910
+ /* handle */ DataType.U64
1911
+ ],
1912
+ },
1913
+ uniffi_slim_bindings_fn_method_multicastbidistreamhandler_send: {
1914
+ library: "libslim_bindings",
1915
+ retType: DataType.Void,
1916
+ paramsType: [
1917
+ /* handle */ DataType.U64,
1918
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
1919
+ ],
1920
+ },
1921
+ uniffi_slim_bindings_fn_method_multicastbidistreamhandler_send_async: {
1922
+ library: "libslim_bindings",
1923
+ retType: /* handle */ DataType.U64,
1924
+ paramsType: [
1925
+ /* handle */ DataType.U64,
1926
+ DataType_UniffiRustBufferStruct
1927
+ ],
1928
+ },
1929
+ uniffi_slim_bindings_fn_clone_multicastresponsereader: {
1930
+ library: "libslim_bindings",
1931
+ retType: /* handle */ DataType.U64,
1932
+ paramsType: [
1933
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1934
+ ],
1935
+ },
1936
+ uniffi_slim_bindings_fn_free_multicastresponsereader: {
1937
+ library: "libslim_bindings",
1938
+ retType: DataType.Void,
1939
+ paramsType: [
1940
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1941
+ ],
1942
+ },
1943
+ uniffi_slim_bindings_fn_method_multicastresponsereader_next: {
1944
+ library: "libslim_bindings",
1945
+ retType: DataType_UniffiRustBufferStruct,
1946
+ paramsType: [
1947
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1948
+ ],
1949
+ },
1950
+ uniffi_slim_bindings_fn_method_multicastresponsereader_next_async: {
1951
+ library: "libslim_bindings",
1952
+ retType: /* handle */ DataType.U64,
1953
+ paramsType: [
1954
+ /* handle */ DataType.U64
1955
+ ],
1956
+ },
1957
+ uniffi_slim_bindings_fn_clone_requeststream: {
1958
+ library: "libslim_bindings",
1959
+ retType: /* handle */ DataType.U64,
1960
+ paramsType: [
1961
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1962
+ ],
1963
+ },
1964
+ uniffi_slim_bindings_fn_free_requeststream: {
1965
+ library: "libslim_bindings",
1966
+ retType: DataType.Void,
1967
+ paramsType: [
1968
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1969
+ ],
1970
+ },
1971
+ uniffi_slim_bindings_fn_method_requeststream_next: {
1972
+ library: "libslim_bindings",
1973
+ retType: DataType_UniffiRustBufferStruct,
1974
+ paramsType: [
1975
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1976
+ ],
1977
+ },
1978
+ uniffi_slim_bindings_fn_method_requeststream_next_async: {
1979
+ library: "libslim_bindings",
1980
+ retType: /* handle */ DataType.U64,
1981
+ paramsType: [
1982
+ /* handle */ DataType.U64
1983
+ ],
1984
+ },
1985
+ uniffi_slim_bindings_fn_clone_requeststreamwriter: {
1986
+ library: "libslim_bindings",
1987
+ retType: /* handle */ DataType.U64,
1988
+ paramsType: [
1989
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1990
+ ],
1991
+ },
1992
+ uniffi_slim_bindings_fn_free_requeststreamwriter: {
1993
+ library: "libslim_bindings",
1994
+ retType: DataType.Void,
1995
+ paramsType: [
1996
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
1997
+ ],
1998
+ },
1999
+ uniffi_slim_bindings_fn_method_requeststreamwriter_finalize_async: {
2000
+ library: "libslim_bindings",
2001
+ retType: /* handle */ DataType.U64,
2002
+ paramsType: [
2003
+ /* handle */ DataType.U64
2004
+ ],
2005
+ },
2006
+ uniffi_slim_bindings_fn_method_requeststreamwriter_finalize_stream: {
2007
+ library: "libslim_bindings",
2008
+ retType: DataType_UniffiRustBufferStruct,
2009
+ paramsType: [
2010
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
2011
+ ],
2012
+ },
2013
+ uniffi_slim_bindings_fn_method_requeststreamwriter_finalize_stream_async: {
2014
+ library: "libslim_bindings",
2015
+ retType: /* handle */ DataType.U64,
2016
+ paramsType: [
2017
+ /* handle */ DataType.U64
2018
+ ],
2019
+ },
2020
+ uniffi_slim_bindings_fn_method_requeststreamwriter_send: {
2021
+ library: "libslim_bindings",
2022
+ retType: DataType.Void,
2023
+ paramsType: [
2024
+ /* handle */ DataType.U64,
2025
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
2026
+ ],
2027
+ },
2028
+ uniffi_slim_bindings_fn_method_requeststreamwriter_send_async: {
2029
+ library: "libslim_bindings",
2030
+ retType: /* handle */ DataType.U64,
2031
+ paramsType: [
2032
+ /* handle */ DataType.U64,
2033
+ DataType_UniffiRustBufferStruct
2034
+ ],
2035
+ },
2036
+ uniffi_slim_bindings_fn_clone_responsesink: {
2037
+ library: "libslim_bindings",
2038
+ retType: /* handle */ DataType.U64,
2039
+ paramsType: [
2040
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
2041
+ ],
2042
+ },
2043
+ uniffi_slim_bindings_fn_free_responsesink: {
2044
+ library: "libslim_bindings",
2045
+ retType: DataType.Void,
2046
+ paramsType: [
2047
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
2048
+ ],
2049
+ },
2050
+ uniffi_slim_bindings_fn_method_responsesink_close: {
2051
+ library: "libslim_bindings",
2052
+ retType: DataType.Void,
2053
+ paramsType: [
2054
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
2055
+ ],
2056
+ },
2057
+ uniffi_slim_bindings_fn_method_responsesink_close_async: {
2058
+ library: "libslim_bindings",
2059
+ retType: /* handle */ DataType.U64,
2060
+ paramsType: [
2061
+ /* handle */ DataType.U64
2062
+ ],
2063
+ },
2064
+ uniffi_slim_bindings_fn_method_responsesink_is_closed: {
2065
+ library: "libslim_bindings",
2066
+ retType: /* i8 */ DataType.U8,
2067
+ paramsType: [
2068
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
2069
+ ],
2070
+ },
2071
+ uniffi_slim_bindings_fn_method_responsesink_is_closed_async: {
2072
+ library: "libslim_bindings",
2073
+ retType: /* handle */ DataType.U64,
2074
+ paramsType: [
2075
+ /* handle */ DataType.U64
2076
+ ],
2077
+ },
2078
+ uniffi_slim_bindings_fn_method_responsesink_send: {
2079
+ library: "libslim_bindings",
2080
+ retType: DataType.Void,
2081
+ paramsType: [
2082
+ /* handle */ DataType.U64,
2083
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
2084
+ ],
2085
+ },
2086
+ uniffi_slim_bindings_fn_method_responsesink_send_async: {
2087
+ library: "libslim_bindings",
2088
+ retType: /* handle */ DataType.U64,
2089
+ paramsType: [
2090
+ /* handle */ DataType.U64,
2091
+ DataType_UniffiRustBufferStruct
2092
+ ],
2093
+ },
2094
+ uniffi_slim_bindings_fn_method_responsesink_send_error: {
2095
+ library: "libslim_bindings",
2096
+ retType: DataType.Void,
2097
+ paramsType: [
2098
+ /* handle */ DataType.U64,
2099
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
2100
+ ],
2101
+ },
2102
+ uniffi_slim_bindings_fn_method_responsesink_send_error_async: {
2103
+ library: "libslim_bindings",
2104
+ retType: /* handle */ DataType.U64,
2105
+ paramsType: [
2106
+ /* handle */ DataType.U64,
2107
+ DataType_UniffiRustBufferStruct
2108
+ ],
2109
+ },
2110
+ uniffi_slim_bindings_fn_clone_responsestreamreader: {
2111
+ library: "libslim_bindings",
2112
+ retType: /* handle */ DataType.U64,
2113
+ paramsType: [
2114
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
2115
+ ],
2116
+ },
2117
+ uniffi_slim_bindings_fn_free_responsestreamreader: {
2118
+ library: "libslim_bindings",
2119
+ retType: DataType.Void,
2120
+ paramsType: [
2121
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
2122
+ ],
2123
+ },
2124
+ uniffi_slim_bindings_fn_method_responsestreamreader_next: {
2125
+ library: "libslim_bindings",
2126
+ retType: DataType_UniffiRustBufferStruct,
2127
+ paramsType: [
2128
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
2129
+ ],
2130
+ },
2131
+ uniffi_slim_bindings_fn_method_responsestreamreader_next_async: {
2132
+ library: "libslim_bindings",
2133
+ retType: /* handle */ DataType.U64,
2134
+ paramsType: [
2135
+ /* handle */ DataType.U64
2136
+ ],
2137
+ },
2138
+ uniffi_slim_bindings_fn_func_get_build_info: {
2139
+ library: "libslim_bindings",
2140
+ retType: DataType_UniffiRustBufferStruct,
2141
+ paramsType: [/* RustCallStatus */ DataType.External
2142
+ ],
2143
+ },
2144
+ uniffi_slim_bindings_fn_func_get_version: {
2145
+ library: "libslim_bindings",
2146
+ retType: DataType_UniffiRustBufferStruct,
2147
+ paramsType: [/* RustCallStatus */ DataType.External
2148
+ ],
2149
+ },
2150
+ uniffi_slim_bindings_fn_func_new_config_from_json: {
2151
+ library: "libslim_bindings",
2152
+ retType: DataType_UniffiRustBufferStruct,
2153
+ paramsType: [
2154
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
2155
+ ],
2156
+ },
2157
+ uniffi_slim_bindings_fn_func_new_insecure_client_config: {
2158
+ library: "libslim_bindings",
2159
+ retType: DataType_UniffiRustBufferStruct,
2160
+ paramsType: [
2161
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
2162
+ ],
2163
+ },
2164
+ uniffi_slim_bindings_fn_func_new_secure_client_config: {
2165
+ library: "libslim_bindings",
2166
+ retType: DataType_UniffiRustBufferStruct,
2167
+ paramsType: [
2168
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
2169
+ ],
2170
+ },
2171
+ uniffi_slim_bindings_fn_func_get_global_service: {
2172
+ library: "libslim_bindings",
2173
+ retType: /* handle */ DataType.U64,
2174
+ paramsType: [/* RustCallStatus */ DataType.External
2175
+ ],
2176
+ },
2177
+ uniffi_slim_bindings_fn_func_get_services: {
2178
+ library: "libslim_bindings",
2179
+ retType: DataType_UniffiRustBufferStruct,
2180
+ paramsType: [/* RustCallStatus */ DataType.External
2181
+ ],
2182
+ },
2183
+ uniffi_slim_bindings_fn_func_initialize_from_config: {
2184
+ library: "libslim_bindings",
2185
+ retType: DataType.Void,
2186
+ paramsType: [
2187
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
2188
+ ],
2189
+ },
2190
+ uniffi_slim_bindings_fn_func_initialize_from_config_with_error: {
2191
+ library: "libslim_bindings",
2192
+ retType: DataType.Void,
2193
+ paramsType: [
2194
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
2195
+ ],
2196
+ },
2197
+ uniffi_slim_bindings_fn_func_initialize_with_configs: {
2198
+ library: "libslim_bindings",
2199
+ retType: DataType.Void,
2200
+ paramsType: [
2201
+ DataType_UniffiRustBufferStruct,
2202
+ DataType_UniffiRustBufferStruct,
2203
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
2204
+ ],
2205
+ },
2206
+ uniffi_slim_bindings_fn_func_initialize_with_defaults: {
2207
+ library: "libslim_bindings",
2208
+ retType: DataType.Void,
2209
+ paramsType: [/* RustCallStatus */ DataType.External
2210
+ ],
2211
+ },
2212
+ uniffi_slim_bindings_fn_func_is_initialized: {
2213
+ library: "libslim_bindings",
2214
+ retType: /* i8 */ DataType.U8,
2215
+ paramsType: [/* RustCallStatus */ DataType.External
2216
+ ],
2217
+ },
2218
+ uniffi_slim_bindings_fn_func_shutdown_blocking: {
2219
+ library: "libslim_bindings",
2220
+ retType: DataType.Void,
2221
+ paramsType: [/* RustCallStatus */ DataType.External
2222
+ ],
2223
+ },
2224
+ uniffi_slim_bindings_fn_func_new_runtime_config: {
2225
+ library: "libslim_bindings",
2226
+ retType: DataType_UniffiRustBufferStruct,
2227
+ paramsType: [/* RustCallStatus */ DataType.External
2228
+ ],
2229
+ },
2230
+ uniffi_slim_bindings_fn_func_new_runtime_config_with: {
2231
+ library: "libslim_bindings",
2232
+ retType: DataType_UniffiRustBufferStruct,
2233
+ paramsType: [
2234
+ DataType.U64,
2235
+ DataType_UniffiRustBufferStruct,
2236
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
2237
+ ],
2238
+ },
2239
+ uniffi_slim_bindings_fn_func_new_service_config: {
2240
+ library: "libslim_bindings",
2241
+ retType: DataType_UniffiRustBufferStruct,
2242
+ paramsType: [/* RustCallStatus */ DataType.External
2243
+ ],
2244
+ },
2245
+ uniffi_slim_bindings_fn_func_new_service_config_with: {
2246
+ library: "libslim_bindings",
2247
+ retType: DataType_UniffiRustBufferStruct,
2248
+ paramsType: [
2249
+ DataType_UniffiRustBufferStruct,
2250
+ DataType_UniffiRustBufferStruct,
2251
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
2252
+ ],
2253
+ },
2254
+ uniffi_slim_bindings_fn_func_new_tracing_config: {
2255
+ library: "libslim_bindings",
2256
+ retType: DataType_UniffiRustBufferStruct,
2257
+ paramsType: [/* RustCallStatus */ DataType.External
2258
+ ],
2259
+ },
2260
+ uniffi_slim_bindings_fn_func_new_tracing_config_with: {
2261
+ library: "libslim_bindings",
2262
+ retType: DataType_UniffiRustBufferStruct,
2263
+ paramsType: [
2264
+ DataType_UniffiRustBufferStruct,
2265
+ /* i8 */ DataType.U8,
2266
+ /* i8 */ DataType.U8,
2267
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
2268
+ ],
2269
+ },
2270
+ uniffi_slim_bindings_fn_func_new_insecure_server_config: {
2271
+ library: "libslim_bindings",
2272
+ retType: DataType_UniffiRustBufferStruct,
2273
+ paramsType: [
2274
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
2275
+ ],
2276
+ },
2277
+ uniffi_slim_bindings_fn_func_new_secure_server_config: {
2278
+ library: "libslim_bindings",
2279
+ retType: DataType_UniffiRustBufferStruct,
2280
+ paramsType: [
2281
+ DataType_UniffiRustBufferStruct,
2282
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
2283
+ ],
2284
+ },
2285
+ uniffi_slim_bindings_fn_func_new_server_config: {
2286
+ library: "libslim_bindings",
2287
+ retType: DataType_UniffiRustBufferStruct,
2288
+ paramsType: [
2289
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
2290
+ ],
2291
+ },
2292
+ uniffi_slim_bindings_fn_func_create_service: {
2293
+ library: "libslim_bindings",
2294
+ retType: /* handle */ DataType.U64,
2295
+ paramsType: [
2296
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
2297
+ ],
2298
+ },
2299
+ uniffi_slim_bindings_fn_func_create_service_with_config: {
2300
+ library: "libslim_bindings",
2301
+ retType: /* handle */ DataType.U64,
2302
+ paramsType: [
2303
+ DataType_UniffiRustBufferStruct,
2304
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
2305
+ ],
2306
+ },
2307
+ uniffi_slim_bindings_fn_func_new_dataplane_config: {
2308
+ library: "libslim_bindings",
2309
+ retType: DataType_UniffiRustBufferStruct,
2310
+ paramsType: [/* RustCallStatus */ DataType.External
2311
+ ],
2312
+ },
2313
+ uniffi_slim_bindings_fn_func_new_service_configuration: {
2314
+ library: "libslim_bindings",
2315
+ retType: DataType_UniffiRustBufferStruct,
2316
+ paramsType: [/* RustCallStatus */ DataType.External
2317
+ ],
2318
+ },
2319
+ ffi_slim_bindings_rustbuffer_alloc: {
2320
+ library: "libslim_bindings",
2321
+ retType: DataType_UniffiRustBufferStruct,
2322
+ paramsType: [
2323
+ DataType.U64, /* RustCallStatus */ DataType.External
2324
+ ],
2325
+ },
2326
+ ffi_slim_bindings_rustbuffer_from_bytes: {
2327
+ library: "libslim_bindings",
2328
+ retType: DataType_UniffiRustBufferStruct,
2329
+ paramsType: [
2330
+ DataType_UniffiForeignBytes, /* RustCallStatus */ DataType.External
2331
+ ],
2332
+ },
2333
+ ffi_slim_bindings_rustbuffer_free: {
2334
+ library: "libslim_bindings",
2335
+ retType: DataType.Void,
2336
+ paramsType: [
2337
+ DataType_UniffiRustBufferStruct, /* RustCallStatus */ DataType.External
2338
+ ],
2339
+ },
2340
+ ffi_slim_bindings_rustbuffer_reserve: {
2341
+ library: "libslim_bindings",
2342
+ retType: DataType_UniffiRustBufferStruct,
2343
+ paramsType: [
2344
+ DataType_UniffiRustBufferStruct,
2345
+ DataType.U64, /* RustCallStatus */ DataType.External
2346
+ ],
2347
+ },
2348
+ ffi_slim_bindings_rust_future_poll_u8: {
2349
+ library: "libslim_bindings",
2350
+ retType: DataType.Void,
2351
+ paramsType: [
2352
+ /* handle */ DataType.U64,
2353
+ /* callback */ DataType.External,
2354
+ /* handle */ DataType.U64
2355
+ ],
2356
+ },
2357
+ ffi_slim_bindings_rust_future_cancel_u8: {
2358
+ library: "libslim_bindings",
2359
+ retType: DataType.Void,
2360
+ paramsType: [
2361
+ /* handle */ DataType.U64
2362
+ ],
2363
+ },
2364
+ ffi_slim_bindings_rust_future_free_u8: {
2365
+ library: "libslim_bindings",
2366
+ retType: DataType.Void,
2367
+ paramsType: [
2368
+ /* handle */ DataType.U64
2369
+ ],
2370
+ },
2371
+ ffi_slim_bindings_rust_future_complete_u8: {
2372
+ library: "libslim_bindings",
2373
+ retType: DataType.U8,
2374
+ paramsType: [
2375
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
2376
+ ],
2377
+ },
2378
+ ffi_slim_bindings_rust_future_poll_i8: {
2379
+ library: "libslim_bindings",
2380
+ retType: DataType.Void,
2381
+ paramsType: [
2382
+ /* handle */ DataType.U64,
2383
+ /* callback */ DataType.External,
2384
+ /* handle */ DataType.U64
2385
+ ],
2386
+ },
2387
+ ffi_slim_bindings_rust_future_cancel_i8: {
2388
+ library: "libslim_bindings",
2389
+ retType: DataType.Void,
2390
+ paramsType: [
2391
+ /* handle */ DataType.U64
2392
+ ],
2393
+ },
2394
+ ffi_slim_bindings_rust_future_free_i8: {
2395
+ library: "libslim_bindings",
2396
+ retType: DataType.Void,
2397
+ paramsType: [
2398
+ /* handle */ DataType.U64
2399
+ ],
2400
+ },
2401
+ ffi_slim_bindings_rust_future_complete_i8: {
2402
+ library: "libslim_bindings",
2403
+ retType: /* i8 */ DataType.U8,
2404
+ paramsType: [
2405
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
2406
+ ],
2407
+ },
2408
+ ffi_slim_bindings_rust_future_poll_u16: {
2409
+ library: "libslim_bindings",
2410
+ retType: DataType.Void,
2411
+ paramsType: [
2412
+ /* handle */ DataType.U64,
2413
+ /* callback */ DataType.External,
2414
+ /* handle */ DataType.U64
2415
+ ],
2416
+ },
2417
+ ffi_slim_bindings_rust_future_cancel_u16: {
2418
+ library: "libslim_bindings",
2419
+ retType: DataType.Void,
2420
+ paramsType: [
2421
+ /* handle */ DataType.U64
2422
+ ],
2423
+ },
2424
+ ffi_slim_bindings_rust_future_free_u16: {
2425
+ library: "libslim_bindings",
2426
+ retType: DataType.Void,
2427
+ paramsType: [
2428
+ /* handle */ DataType.U64
2429
+ ],
2430
+ },
2431
+ ffi_slim_bindings_rust_future_complete_u16: {
2432
+ library: "libslim_bindings",
2433
+ retType: /* u16 */ DataType.U64,
2434
+ paramsType: [
2435
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
2436
+ ],
2437
+ },
2438
+ ffi_slim_bindings_rust_future_poll_i16: {
2439
+ library: "libslim_bindings",
2440
+ retType: DataType.Void,
2441
+ paramsType: [
2442
+ /* handle */ DataType.U64,
2443
+ /* callback */ DataType.External,
2444
+ /* handle */ DataType.U64
2445
+ ],
2446
+ },
2447
+ ffi_slim_bindings_rust_future_cancel_i16: {
2448
+ library: "libslim_bindings",
2449
+ retType: DataType.Void,
2450
+ paramsType: [
2451
+ /* handle */ DataType.U64
2452
+ ],
2453
+ },
2454
+ ffi_slim_bindings_rust_future_free_i16: {
2455
+ library: "libslim_bindings",
2456
+ retType: DataType.Void,
2457
+ paramsType: [
2458
+ /* handle */ DataType.U64
2459
+ ],
2460
+ },
2461
+ ffi_slim_bindings_rust_future_complete_i16: {
2462
+ library: "libslim_bindings",
2463
+ retType: DataType.I16,
2464
+ paramsType: [
2465
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
2466
+ ],
2467
+ },
2468
+ ffi_slim_bindings_rust_future_poll_u32: {
2469
+ library: "libslim_bindings",
2470
+ retType: DataType.Void,
2471
+ paramsType: [
2472
+ /* handle */ DataType.U64,
2473
+ /* callback */ DataType.External,
2474
+ /* handle */ DataType.U64
2475
+ ],
2476
+ },
2477
+ ffi_slim_bindings_rust_future_cancel_u32: {
2478
+ library: "libslim_bindings",
2479
+ retType: DataType.Void,
2480
+ paramsType: [
2481
+ /* handle */ DataType.U64
2482
+ ],
2483
+ },
2484
+ ffi_slim_bindings_rust_future_free_u32: {
2485
+ library: "libslim_bindings",
2486
+ retType: DataType.Void,
2487
+ paramsType: [
2488
+ /* handle */ DataType.U64
2489
+ ],
2490
+ },
2491
+ ffi_slim_bindings_rust_future_complete_u32: {
2492
+ library: "libslim_bindings",
2493
+ retType: /* u32 */ DataType.U64,
2494
+ paramsType: [
2495
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
2496
+ ],
2497
+ },
2498
+ ffi_slim_bindings_rust_future_poll_i32: {
2499
+ library: "libslim_bindings",
2500
+ retType: DataType.Void,
2501
+ paramsType: [
2502
+ /* handle */ DataType.U64,
2503
+ /* callback */ DataType.External,
2504
+ /* handle */ DataType.U64
2505
+ ],
2506
+ },
2507
+ ffi_slim_bindings_rust_future_cancel_i32: {
2508
+ library: "libslim_bindings",
2509
+ retType: DataType.Void,
2510
+ paramsType: [
2511
+ /* handle */ DataType.U64
2512
+ ],
2513
+ },
2514
+ ffi_slim_bindings_rust_future_free_i32: {
2515
+ library: "libslim_bindings",
2516
+ retType: DataType.Void,
2517
+ paramsType: [
2518
+ /* handle */ DataType.U64
2519
+ ],
2520
+ },
2521
+ ffi_slim_bindings_rust_future_complete_i32: {
2522
+ library: "libslim_bindings",
2523
+ retType: DataType.I32,
2524
+ paramsType: [
2525
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
2526
+ ],
2527
+ },
2528
+ ffi_slim_bindings_rust_future_poll_u64: {
2529
+ library: "libslim_bindings",
2530
+ retType: DataType.Void,
2531
+ paramsType: [
2532
+ /* handle */ DataType.U64,
2533
+ /* callback */ DataType.External,
2534
+ /* handle */ DataType.U64
2535
+ ],
2536
+ },
2537
+ ffi_slim_bindings_rust_future_cancel_u64: {
2538
+ library: "libslim_bindings",
2539
+ retType: DataType.Void,
2540
+ paramsType: [
2541
+ /* handle */ DataType.U64
2542
+ ],
2543
+ },
2544
+ ffi_slim_bindings_rust_future_free_u64: {
2545
+ library: "libslim_bindings",
2546
+ retType: DataType.Void,
2547
+ paramsType: [
2548
+ /* handle */ DataType.U64
2549
+ ],
2550
+ },
2551
+ ffi_slim_bindings_rust_future_complete_u64: {
2552
+ library: "libslim_bindings",
2553
+ retType: DataType.U64,
2554
+ paramsType: [
2555
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
2556
+ ],
2557
+ },
2558
+ ffi_slim_bindings_rust_future_poll_i64: {
2559
+ library: "libslim_bindings",
2560
+ retType: DataType.Void,
2561
+ paramsType: [
2562
+ /* handle */ DataType.U64,
2563
+ /* callback */ DataType.External,
2564
+ /* handle */ DataType.U64
2565
+ ],
2566
+ },
2567
+ ffi_slim_bindings_rust_future_cancel_i64: {
2568
+ library: "libslim_bindings",
2569
+ retType: DataType.Void,
2570
+ paramsType: [
2571
+ /* handle */ DataType.U64
2572
+ ],
2573
+ },
2574
+ ffi_slim_bindings_rust_future_free_i64: {
2575
+ library: "libslim_bindings",
2576
+ retType: DataType.Void,
2577
+ paramsType: [
2578
+ /* handle */ DataType.U64
2579
+ ],
2580
+ },
2581
+ ffi_slim_bindings_rust_future_complete_i64: {
2582
+ library: "libslim_bindings",
2583
+ retType: DataType.I64,
2584
+ paramsType: [
2585
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
2586
+ ],
2587
+ },
2588
+ ffi_slim_bindings_rust_future_poll_f32: {
2589
+ library: "libslim_bindings",
2590
+ retType: DataType.Void,
2591
+ paramsType: [
2592
+ /* handle */ DataType.U64,
2593
+ /* callback */ DataType.External,
2594
+ /* handle */ DataType.U64
2595
+ ],
2596
+ },
2597
+ ffi_slim_bindings_rust_future_cancel_f32: {
2598
+ library: "libslim_bindings",
2599
+ retType: DataType.Void,
2600
+ paramsType: [
2601
+ /* handle */ DataType.U64
2602
+ ],
2603
+ },
2604
+ ffi_slim_bindings_rust_future_free_f32: {
2605
+ library: "libslim_bindings",
2606
+ retType: DataType.Void,
2607
+ paramsType: [
2608
+ /* handle */ DataType.U64
2609
+ ],
2610
+ },
2611
+ ffi_slim_bindings_rust_future_complete_f32: {
2612
+ library: "libslim_bindings",
2613
+ retType: /* f32 */ DataType.Float,
2614
+ paramsType: [
2615
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
2616
+ ],
2617
+ },
2618
+ ffi_slim_bindings_rust_future_poll_f64: {
2619
+ library: "libslim_bindings",
2620
+ retType: DataType.Void,
2621
+ paramsType: [
2622
+ /* handle */ DataType.U64,
2623
+ /* callback */ DataType.External,
2624
+ /* handle */ DataType.U64
2625
+ ],
2626
+ },
2627
+ ffi_slim_bindings_rust_future_cancel_f64: {
2628
+ library: "libslim_bindings",
2629
+ retType: DataType.Void,
2630
+ paramsType: [
2631
+ /* handle */ DataType.U64
2632
+ ],
2633
+ },
2634
+ ffi_slim_bindings_rust_future_free_f64: {
2635
+ library: "libslim_bindings",
2636
+ retType: DataType.Void,
2637
+ paramsType: [
2638
+ /* handle */ DataType.U64
2639
+ ],
2640
+ },
2641
+ ffi_slim_bindings_rust_future_complete_f64: {
2642
+ library: "libslim_bindings",
2643
+ retType: /* f64 */ DataType.Double,
2644
+ paramsType: [
2645
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
2646
+ ],
2647
+ },
2648
+ ffi_slim_bindings_rust_future_poll_rust_buffer: {
2649
+ library: "libslim_bindings",
2650
+ retType: DataType.Void,
2651
+ paramsType: [
2652
+ /* handle */ DataType.U64,
2653
+ /* callback */ DataType.External,
2654
+ /* handle */ DataType.U64
2655
+ ],
2656
+ },
2657
+ ffi_slim_bindings_rust_future_cancel_rust_buffer: {
2658
+ library: "libslim_bindings",
2659
+ retType: DataType.Void,
2660
+ paramsType: [
2661
+ /* handle */ DataType.U64
2662
+ ],
2663
+ },
2664
+ ffi_slim_bindings_rust_future_free_rust_buffer: {
2665
+ library: "libslim_bindings",
2666
+ retType: DataType.Void,
2667
+ paramsType: [
2668
+ /* handle */ DataType.U64
2669
+ ],
2670
+ },
2671
+ ffi_slim_bindings_rust_future_complete_rust_buffer: {
2672
+ library: "libslim_bindings",
2673
+ retType: DataType_UniffiRustBufferStruct,
2674
+ paramsType: [
2675
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
2676
+ ],
2677
+ },
2678
+ ffi_slim_bindings_rust_future_poll_void: {
2679
+ library: "libslim_bindings",
2680
+ retType: DataType.Void,
2681
+ paramsType: [
2682
+ /* handle */ DataType.U64,
2683
+ /* callback */ DataType.External,
2684
+ /* handle */ DataType.U64
2685
+ ],
2686
+ },
2687
+ ffi_slim_bindings_rust_future_cancel_void: {
2688
+ library: "libslim_bindings",
2689
+ retType: DataType.Void,
2690
+ paramsType: [
2691
+ /* handle */ DataType.U64
2692
+ ],
2693
+ },
2694
+ ffi_slim_bindings_rust_future_free_void: {
2695
+ library: "libslim_bindings",
2696
+ retType: DataType.Void,
2697
+ paramsType: [
2698
+ /* handle */ DataType.U64
2699
+ ],
2700
+ },
2701
+ ffi_slim_bindings_rust_future_complete_void: {
2702
+ library: "libslim_bindings",
2703
+ retType: DataType.Void,
2704
+ paramsType: [
2705
+ /* handle */ DataType.U64, /* RustCallStatus */ DataType.External
2706
+ ],
2707
+ },
2708
+ uniffi_slim_bindings_checksum_func_get_build_info: {
2709
+ library: "libslim_bindings",
2710
+ retType: /* u16 */ DataType.U64,
2711
+ paramsType: [],
2712
+ },
2713
+ uniffi_slim_bindings_checksum_func_get_version: {
2714
+ library: "libslim_bindings",
2715
+ retType: /* u16 */ DataType.U64,
2716
+ paramsType: [],
2717
+ },
2718
+ uniffi_slim_bindings_checksum_func_new_config_from_json: {
2719
+ library: "libslim_bindings",
2720
+ retType: /* u16 */ DataType.U64,
2721
+ paramsType: [],
2722
+ },
2723
+ uniffi_slim_bindings_checksum_func_new_insecure_client_config: {
2724
+ library: "libslim_bindings",
2725
+ retType: /* u16 */ DataType.U64,
2726
+ paramsType: [],
2727
+ },
2728
+ uniffi_slim_bindings_checksum_func_new_secure_client_config: {
2729
+ library: "libslim_bindings",
2730
+ retType: /* u16 */ DataType.U64,
2731
+ paramsType: [],
2732
+ },
2733
+ uniffi_slim_bindings_checksum_func_get_global_service: {
2734
+ library: "libslim_bindings",
2735
+ retType: /* u16 */ DataType.U64,
2736
+ paramsType: [],
2737
+ },
2738
+ uniffi_slim_bindings_checksum_func_get_services: {
2739
+ library: "libslim_bindings",
2740
+ retType: /* u16 */ DataType.U64,
2741
+ paramsType: [],
2742
+ },
2743
+ uniffi_slim_bindings_checksum_func_initialize_from_config: {
2744
+ library: "libslim_bindings",
2745
+ retType: /* u16 */ DataType.U64,
2746
+ paramsType: [],
2747
+ },
2748
+ uniffi_slim_bindings_checksum_func_initialize_from_config_with_error: {
2749
+ library: "libslim_bindings",
2750
+ retType: /* u16 */ DataType.U64,
2751
+ paramsType: [],
2752
+ },
2753
+ uniffi_slim_bindings_checksum_func_initialize_with_configs: {
2754
+ library: "libslim_bindings",
2755
+ retType: /* u16 */ DataType.U64,
2756
+ paramsType: [],
2757
+ },
2758
+ uniffi_slim_bindings_checksum_func_initialize_with_defaults: {
2759
+ library: "libslim_bindings",
2760
+ retType: /* u16 */ DataType.U64,
2761
+ paramsType: [],
2762
+ },
2763
+ uniffi_slim_bindings_checksum_func_is_initialized: {
2764
+ library: "libslim_bindings",
2765
+ retType: /* u16 */ DataType.U64,
2766
+ paramsType: [],
2767
+ },
2768
+ uniffi_slim_bindings_checksum_func_shutdown_blocking: {
2769
+ library: "libslim_bindings",
2770
+ retType: /* u16 */ DataType.U64,
2771
+ paramsType: [],
2772
+ },
2773
+ uniffi_slim_bindings_checksum_func_new_runtime_config: {
2774
+ library: "libslim_bindings",
2775
+ retType: /* u16 */ DataType.U64,
2776
+ paramsType: [],
2777
+ },
2778
+ uniffi_slim_bindings_checksum_func_new_runtime_config_with: {
2779
+ library: "libslim_bindings",
2780
+ retType: /* u16 */ DataType.U64,
2781
+ paramsType: [],
2782
+ },
2783
+ uniffi_slim_bindings_checksum_func_new_service_config: {
2784
+ library: "libslim_bindings",
2785
+ retType: /* u16 */ DataType.U64,
2786
+ paramsType: [],
2787
+ },
2788
+ uniffi_slim_bindings_checksum_func_new_service_config_with: {
2789
+ library: "libslim_bindings",
2790
+ retType: /* u16 */ DataType.U64,
2791
+ paramsType: [],
2792
+ },
2793
+ uniffi_slim_bindings_checksum_func_new_tracing_config: {
2794
+ library: "libslim_bindings",
2795
+ retType: /* u16 */ DataType.U64,
2796
+ paramsType: [],
2797
+ },
2798
+ uniffi_slim_bindings_checksum_func_new_tracing_config_with: {
2799
+ library: "libslim_bindings",
2800
+ retType: /* u16 */ DataType.U64,
2801
+ paramsType: [],
2802
+ },
2803
+ uniffi_slim_bindings_checksum_func_new_insecure_server_config: {
2804
+ library: "libslim_bindings",
2805
+ retType: /* u16 */ DataType.U64,
2806
+ paramsType: [],
2807
+ },
2808
+ uniffi_slim_bindings_checksum_func_new_secure_server_config: {
2809
+ library: "libslim_bindings",
2810
+ retType: /* u16 */ DataType.U64,
2811
+ paramsType: [],
2812
+ },
2813
+ uniffi_slim_bindings_checksum_func_new_server_config: {
2814
+ library: "libslim_bindings",
2815
+ retType: /* u16 */ DataType.U64,
2816
+ paramsType: [],
2817
+ },
2818
+ uniffi_slim_bindings_checksum_func_create_service: {
2819
+ library: "libslim_bindings",
2820
+ retType: /* u16 */ DataType.U64,
2821
+ paramsType: [],
2822
+ },
2823
+ uniffi_slim_bindings_checksum_func_create_service_with_config: {
2824
+ library: "libslim_bindings",
2825
+ retType: /* u16 */ DataType.U64,
2826
+ paramsType: [],
2827
+ },
2828
+ uniffi_slim_bindings_checksum_func_new_dataplane_config: {
2829
+ library: "libslim_bindings",
2830
+ retType: /* u16 */ DataType.U64,
2831
+ paramsType: [],
2832
+ },
2833
+ uniffi_slim_bindings_checksum_func_new_service_configuration: {
2834
+ library: "libslim_bindings",
2835
+ retType: /* u16 */ DataType.U64,
2836
+ paramsType: [],
2837
+ },
2838
+ uniffi_slim_bindings_checksum_method_app_create_session: {
2839
+ library: "libslim_bindings",
2840
+ retType: /* u16 */ DataType.U64,
2841
+ paramsType: [],
2842
+ },
2843
+ uniffi_slim_bindings_checksum_method_app_create_session_and_wait: {
2844
+ library: "libslim_bindings",
2845
+ retType: /* u16 */ DataType.U64,
2846
+ paramsType: [],
2847
+ },
2848
+ uniffi_slim_bindings_checksum_method_app_create_session_and_wait_async: {
2849
+ library: "libslim_bindings",
2850
+ retType: /* u16 */ DataType.U64,
2851
+ paramsType: [],
2852
+ },
2853
+ uniffi_slim_bindings_checksum_method_app_create_session_async: {
2854
+ library: "libslim_bindings",
2855
+ retType: /* u16 */ DataType.U64,
2856
+ paramsType: [],
2857
+ },
2858
+ uniffi_slim_bindings_checksum_method_app_delete_session: {
2859
+ library: "libslim_bindings",
2860
+ retType: /* u16 */ DataType.U64,
2861
+ paramsType: [],
2862
+ },
2863
+ uniffi_slim_bindings_checksum_method_app_delete_session_and_wait: {
2864
+ library: "libslim_bindings",
2865
+ retType: /* u16 */ DataType.U64,
2866
+ paramsType: [],
2867
+ },
2868
+ uniffi_slim_bindings_checksum_method_app_delete_session_and_wait_async: {
2869
+ library: "libslim_bindings",
2870
+ retType: /* u16 */ DataType.U64,
2871
+ paramsType: [],
2872
+ },
2873
+ uniffi_slim_bindings_checksum_method_app_delete_session_async: {
2874
+ library: "libslim_bindings",
2875
+ retType: /* u16 */ DataType.U64,
2876
+ paramsType: [],
2877
+ },
2878
+ uniffi_slim_bindings_checksum_method_app_id: {
2879
+ library: "libslim_bindings",
2880
+ retType: /* u16 */ DataType.U64,
2881
+ paramsType: [],
2882
+ },
2883
+ uniffi_slim_bindings_checksum_method_app_listen_for_session: {
2884
+ library: "libslim_bindings",
2885
+ retType: /* u16 */ DataType.U64,
2886
+ paramsType: [],
2887
+ },
2888
+ uniffi_slim_bindings_checksum_method_app_listen_for_session_async: {
2889
+ library: "libslim_bindings",
2890
+ retType: /* u16 */ DataType.U64,
2891
+ paramsType: [],
2892
+ },
2893
+ uniffi_slim_bindings_checksum_method_app_name: {
2894
+ library: "libslim_bindings",
2895
+ retType: /* u16 */ DataType.U64,
2896
+ paramsType: [],
2897
+ },
2898
+ uniffi_slim_bindings_checksum_method_app_remove_route: {
2899
+ library: "libslim_bindings",
2900
+ retType: /* u16 */ DataType.U64,
2901
+ paramsType: [],
2902
+ },
2903
+ uniffi_slim_bindings_checksum_method_app_remove_route_async: {
2904
+ library: "libslim_bindings",
2905
+ retType: /* u16 */ DataType.U64,
2906
+ paramsType: [],
2907
+ },
2908
+ uniffi_slim_bindings_checksum_method_app_set_route: {
2909
+ library: "libslim_bindings",
2910
+ retType: /* u16 */ DataType.U64,
2911
+ paramsType: [],
2912
+ },
2913
+ uniffi_slim_bindings_checksum_method_app_set_route_async: {
2914
+ library: "libslim_bindings",
2915
+ retType: /* u16 */ DataType.U64,
2916
+ paramsType: [],
2917
+ },
2918
+ uniffi_slim_bindings_checksum_method_app_subscribe: {
2919
+ library: "libslim_bindings",
2920
+ retType: /* u16 */ DataType.U64,
2921
+ paramsType: [],
2922
+ },
2923
+ uniffi_slim_bindings_checksum_method_app_subscribe_async: {
2924
+ library: "libslim_bindings",
2925
+ retType: /* u16 */ DataType.U64,
2926
+ paramsType: [],
2927
+ },
2928
+ uniffi_slim_bindings_checksum_method_app_unsubscribe: {
2929
+ library: "libslim_bindings",
2930
+ retType: /* u16 */ DataType.U64,
2931
+ paramsType: [],
2932
+ },
2933
+ uniffi_slim_bindings_checksum_method_app_unsubscribe_async: {
2934
+ library: "libslim_bindings",
2935
+ retType: /* u16 */ DataType.U64,
2936
+ paramsType: [],
2937
+ },
2938
+ uniffi_slim_bindings_checksum_method_completionhandle_wait: {
2939
+ library: "libslim_bindings",
2940
+ retType: /* u16 */ DataType.U64,
2941
+ paramsType: [],
2942
+ },
2943
+ uniffi_slim_bindings_checksum_method_completionhandle_wait_async: {
2944
+ library: "libslim_bindings",
2945
+ retType: /* u16 */ DataType.U64,
2946
+ paramsType: [],
2947
+ },
2948
+ uniffi_slim_bindings_checksum_method_completionhandle_wait_for: {
2949
+ library: "libslim_bindings",
2950
+ retType: /* u16 */ DataType.U64,
2951
+ paramsType: [],
2952
+ },
2953
+ uniffi_slim_bindings_checksum_method_completionhandle_wait_for_async: {
2954
+ library: "libslim_bindings",
2955
+ retType: /* u16 */ DataType.U64,
2956
+ paramsType: [],
2957
+ },
2958
+ uniffi_slim_bindings_checksum_method_name_components: {
2959
+ library: "libslim_bindings",
2960
+ retType: /* u16 */ DataType.U64,
2961
+ paramsType: [],
2962
+ },
2963
+ uniffi_slim_bindings_checksum_method_name_id: {
2964
+ library: "libslim_bindings",
2965
+ retType: /* u16 */ DataType.U64,
2966
+ paramsType: [],
2967
+ },
2968
+ uniffi_slim_bindings_checksum_method_service_config: {
2969
+ library: "libslim_bindings",
2970
+ retType: /* u16 */ DataType.U64,
2971
+ paramsType: [],
2972
+ },
2973
+ uniffi_slim_bindings_checksum_method_service_connect: {
2974
+ library: "libslim_bindings",
2975
+ retType: /* u16 */ DataType.U64,
2976
+ paramsType: [],
2977
+ },
2978
+ uniffi_slim_bindings_checksum_method_service_connect_async: {
2979
+ library: "libslim_bindings",
2980
+ retType: /* u16 */ DataType.U64,
2981
+ paramsType: [],
2982
+ },
2983
+ uniffi_slim_bindings_checksum_method_service_create_app: {
2984
+ library: "libslim_bindings",
2985
+ retType: /* u16 */ DataType.U64,
2986
+ paramsType: [],
2987
+ },
2988
+ uniffi_slim_bindings_checksum_method_service_create_app_async: {
2989
+ library: "libslim_bindings",
2990
+ retType: /* u16 */ DataType.U64,
2991
+ paramsType: [],
2992
+ },
2993
+ uniffi_slim_bindings_checksum_method_service_create_app_with_direction: {
2994
+ library: "libslim_bindings",
2995
+ retType: /* u16 */ DataType.U64,
2996
+ paramsType: [],
2997
+ },
2998
+ uniffi_slim_bindings_checksum_method_service_create_app_with_direction_async: {
2999
+ library: "libslim_bindings",
3000
+ retType: /* u16 */ DataType.U64,
3001
+ paramsType: [],
3002
+ },
3003
+ uniffi_slim_bindings_checksum_method_service_create_app_with_secret: {
3004
+ library: "libslim_bindings",
3005
+ retType: /* u16 */ DataType.U64,
3006
+ paramsType: [],
3007
+ },
3008
+ uniffi_slim_bindings_checksum_method_service_create_app_with_secret_async: {
3009
+ library: "libslim_bindings",
3010
+ retType: /* u16 */ DataType.U64,
3011
+ paramsType: [],
3012
+ },
3013
+ uniffi_slim_bindings_checksum_method_service_disconnect: {
3014
+ library: "libslim_bindings",
3015
+ retType: /* u16 */ DataType.U64,
3016
+ paramsType: [],
3017
+ },
3018
+ uniffi_slim_bindings_checksum_method_service_get_connection_id: {
3019
+ library: "libslim_bindings",
3020
+ retType: /* u16 */ DataType.U64,
3021
+ paramsType: [],
3022
+ },
3023
+ uniffi_slim_bindings_checksum_method_service_get_name: {
3024
+ library: "libslim_bindings",
3025
+ retType: /* u16 */ DataType.U64,
3026
+ paramsType: [],
3027
+ },
3028
+ uniffi_slim_bindings_checksum_method_service_run: {
3029
+ library: "libslim_bindings",
3030
+ retType: /* u16 */ DataType.U64,
3031
+ paramsType: [],
3032
+ },
3033
+ uniffi_slim_bindings_checksum_method_service_run_async: {
3034
+ library: "libslim_bindings",
3035
+ retType: /* u16 */ DataType.U64,
3036
+ paramsType: [],
3037
+ },
3038
+ uniffi_slim_bindings_checksum_method_service_run_server: {
3039
+ library: "libslim_bindings",
3040
+ retType: /* u16 */ DataType.U64,
3041
+ paramsType: [],
3042
+ },
3043
+ uniffi_slim_bindings_checksum_method_service_run_server_async: {
3044
+ library: "libslim_bindings",
3045
+ retType: /* u16 */ DataType.U64,
3046
+ paramsType: [],
3047
+ },
3048
+ uniffi_slim_bindings_checksum_method_service_shutdown: {
3049
+ library: "libslim_bindings",
3050
+ retType: /* u16 */ DataType.U64,
3051
+ paramsType: [],
3052
+ },
3053
+ uniffi_slim_bindings_checksum_method_service_shutdown_async: {
3054
+ library: "libslim_bindings",
3055
+ retType: /* u16 */ DataType.U64,
3056
+ paramsType: [],
3057
+ },
3058
+ uniffi_slim_bindings_checksum_method_service_stop_server: {
3059
+ library: "libslim_bindings",
3060
+ retType: /* u16 */ DataType.U64,
3061
+ paramsType: [],
3062
+ },
3063
+ uniffi_slim_bindings_checksum_method_session_config: {
3064
+ library: "libslim_bindings",
3065
+ retType: /* u16 */ DataType.U64,
3066
+ paramsType: [],
3067
+ },
3068
+ uniffi_slim_bindings_checksum_method_session_destination: {
3069
+ library: "libslim_bindings",
3070
+ retType: /* u16 */ DataType.U64,
3071
+ paramsType: [],
3072
+ },
3073
+ uniffi_slim_bindings_checksum_method_session_get_message: {
3074
+ library: "libslim_bindings",
3075
+ retType: /* u16 */ DataType.U64,
3076
+ paramsType: [],
3077
+ },
3078
+ uniffi_slim_bindings_checksum_method_session_get_message_async: {
3079
+ library: "libslim_bindings",
3080
+ retType: /* u16 */ DataType.U64,
3081
+ paramsType: [],
3082
+ },
3083
+ uniffi_slim_bindings_checksum_method_session_invite: {
3084
+ library: "libslim_bindings",
3085
+ retType: /* u16 */ DataType.U64,
3086
+ paramsType: [],
3087
+ },
3088
+ uniffi_slim_bindings_checksum_method_session_invite_and_wait: {
3089
+ library: "libslim_bindings",
3090
+ retType: /* u16 */ DataType.U64,
3091
+ paramsType: [],
3092
+ },
3093
+ uniffi_slim_bindings_checksum_method_session_invite_and_wait_async: {
3094
+ library: "libslim_bindings",
3095
+ retType: /* u16 */ DataType.U64,
3096
+ paramsType: [],
3097
+ },
3098
+ uniffi_slim_bindings_checksum_method_session_invite_async: {
3099
+ library: "libslim_bindings",
3100
+ retType: /* u16 */ DataType.U64,
3101
+ paramsType: [],
3102
+ },
3103
+ uniffi_slim_bindings_checksum_method_session_is_initiator: {
3104
+ library: "libslim_bindings",
3105
+ retType: /* u16 */ DataType.U64,
3106
+ paramsType: [],
3107
+ },
3108
+ uniffi_slim_bindings_checksum_method_session_metadata: {
3109
+ library: "libslim_bindings",
3110
+ retType: /* u16 */ DataType.U64,
3111
+ paramsType: [],
3112
+ },
3113
+ uniffi_slim_bindings_checksum_method_session_participants_list: {
3114
+ library: "libslim_bindings",
3115
+ retType: /* u16 */ DataType.U64,
3116
+ paramsType: [],
3117
+ },
3118
+ uniffi_slim_bindings_checksum_method_session_participants_list_async: {
3119
+ library: "libslim_bindings",
3120
+ retType: /* u16 */ DataType.U64,
3121
+ paramsType: [],
3122
+ },
3123
+ uniffi_slim_bindings_checksum_method_session_publish: {
3124
+ library: "libslim_bindings",
3125
+ retType: /* u16 */ DataType.U64,
3126
+ paramsType: [],
3127
+ },
3128
+ uniffi_slim_bindings_checksum_method_session_publish_and_wait: {
3129
+ library: "libslim_bindings",
3130
+ retType: /* u16 */ DataType.U64,
3131
+ paramsType: [],
3132
+ },
3133
+ uniffi_slim_bindings_checksum_method_session_publish_and_wait_async: {
3134
+ library: "libslim_bindings",
3135
+ retType: /* u16 */ DataType.U64,
3136
+ paramsType: [],
3137
+ },
3138
+ uniffi_slim_bindings_checksum_method_session_publish_async: {
3139
+ library: "libslim_bindings",
3140
+ retType: /* u16 */ DataType.U64,
3141
+ paramsType: [],
3142
+ },
3143
+ uniffi_slim_bindings_checksum_method_session_publish_to: {
3144
+ library: "libslim_bindings",
3145
+ retType: /* u16 */ DataType.U64,
3146
+ paramsType: [],
3147
+ },
3148
+ uniffi_slim_bindings_checksum_method_session_publish_to_and_wait: {
3149
+ library: "libslim_bindings",
3150
+ retType: /* u16 */ DataType.U64,
3151
+ paramsType: [],
3152
+ },
3153
+ uniffi_slim_bindings_checksum_method_session_publish_to_and_wait_async: {
3154
+ library: "libslim_bindings",
3155
+ retType: /* u16 */ DataType.U64,
3156
+ paramsType: [],
3157
+ },
3158
+ uniffi_slim_bindings_checksum_method_session_publish_to_async: {
3159
+ library: "libslim_bindings",
3160
+ retType: /* u16 */ DataType.U64,
3161
+ paramsType: [],
3162
+ },
3163
+ uniffi_slim_bindings_checksum_method_session_publish_with_params: {
3164
+ library: "libslim_bindings",
3165
+ retType: /* u16 */ DataType.U64,
3166
+ paramsType: [],
3167
+ },
3168
+ uniffi_slim_bindings_checksum_method_session_publish_with_params_async: {
3169
+ library: "libslim_bindings",
3170
+ retType: /* u16 */ DataType.U64,
3171
+ paramsType: [],
3172
+ },
3173
+ uniffi_slim_bindings_checksum_method_session_remove: {
3174
+ library: "libslim_bindings",
3175
+ retType: /* u16 */ DataType.U64,
3176
+ paramsType: [],
3177
+ },
3178
+ uniffi_slim_bindings_checksum_method_session_remove_and_wait: {
3179
+ library: "libslim_bindings",
3180
+ retType: /* u16 */ DataType.U64,
3181
+ paramsType: [],
3182
+ },
3183
+ uniffi_slim_bindings_checksum_method_session_remove_and_wait_async: {
3184
+ library: "libslim_bindings",
3185
+ retType: /* u16 */ DataType.U64,
3186
+ paramsType: [],
3187
+ },
3188
+ uniffi_slim_bindings_checksum_method_session_remove_async: {
3189
+ library: "libslim_bindings",
3190
+ retType: /* u16 */ DataType.U64,
3191
+ paramsType: [],
3192
+ },
3193
+ uniffi_slim_bindings_checksum_method_session_session_id: {
3194
+ library: "libslim_bindings",
3195
+ retType: /* u16 */ DataType.U64,
3196
+ paramsType: [],
3197
+ },
3198
+ uniffi_slim_bindings_checksum_method_session_session_type: {
3199
+ library: "libslim_bindings",
3200
+ retType: /* u16 */ DataType.U64,
3201
+ paramsType: [],
3202
+ },
3203
+ uniffi_slim_bindings_checksum_method_session_source: {
3204
+ library: "libslim_bindings",
3205
+ retType: /* u16 */ DataType.U64,
3206
+ paramsType: [],
3207
+ },
3208
+ uniffi_slim_bindings_checksum_method_channel_call_multicast_stream_stream: {
3209
+ library: "libslim_bindings",
3210
+ retType: /* u16 */ DataType.U64,
3211
+ paramsType: [],
3212
+ },
3213
+ uniffi_slim_bindings_checksum_method_channel_call_multicast_stream_unary: {
3214
+ library: "libslim_bindings",
3215
+ retType: /* u16 */ DataType.U64,
3216
+ paramsType: [],
3217
+ },
3218
+ uniffi_slim_bindings_checksum_method_channel_call_multicast_unary: {
3219
+ library: "libslim_bindings",
3220
+ retType: /* u16 */ DataType.U64,
3221
+ paramsType: [],
3222
+ },
3223
+ uniffi_slim_bindings_checksum_method_channel_call_multicast_unary_async: {
3224
+ library: "libslim_bindings",
3225
+ retType: /* u16 */ DataType.U64,
3226
+ paramsType: [],
3227
+ },
3228
+ uniffi_slim_bindings_checksum_method_channel_call_multicast_unary_stream: {
3229
+ library: "libslim_bindings",
3230
+ retType: /* u16 */ DataType.U64,
3231
+ paramsType: [],
3232
+ },
3233
+ uniffi_slim_bindings_checksum_method_channel_call_multicast_unary_stream_async: {
3234
+ library: "libslim_bindings",
3235
+ retType: /* u16 */ DataType.U64,
3236
+ paramsType: [],
3237
+ },
3238
+ uniffi_slim_bindings_checksum_method_channel_call_stream_stream: {
3239
+ library: "libslim_bindings",
3240
+ retType: /* u16 */ DataType.U64,
3241
+ paramsType: [],
3242
+ },
3243
+ uniffi_slim_bindings_checksum_method_channel_call_stream_unary: {
3244
+ library: "libslim_bindings",
3245
+ retType: /* u16 */ DataType.U64,
3246
+ paramsType: [],
3247
+ },
3248
+ uniffi_slim_bindings_checksum_method_channel_call_unary: {
3249
+ library: "libslim_bindings",
3250
+ retType: /* u16 */ DataType.U64,
3251
+ paramsType: [],
3252
+ },
3253
+ uniffi_slim_bindings_checksum_method_channel_call_unary_async: {
3254
+ library: "libslim_bindings",
3255
+ retType: /* u16 */ DataType.U64,
3256
+ paramsType: [],
3257
+ },
3258
+ uniffi_slim_bindings_checksum_method_channel_call_unary_stream: {
3259
+ library: "libslim_bindings",
3260
+ retType: /* u16 */ DataType.U64,
3261
+ paramsType: [],
3262
+ },
3263
+ uniffi_slim_bindings_checksum_method_channel_call_unary_stream_async: {
3264
+ library: "libslim_bindings",
3265
+ retType: /* u16 */ DataType.U64,
3266
+ paramsType: [],
3267
+ },
3268
+ uniffi_slim_bindings_checksum_method_channel_close: {
3269
+ library: "libslim_bindings",
3270
+ retType: /* u16 */ DataType.U64,
3271
+ paramsType: [],
3272
+ },
3273
+ uniffi_slim_bindings_checksum_method_channel_close_async: {
3274
+ library: "libslim_bindings",
3275
+ retType: /* u16 */ DataType.U64,
3276
+ paramsType: [],
3277
+ },
3278
+ uniffi_slim_bindings_checksum_method_context_deadline: {
3279
+ library: "libslim_bindings",
3280
+ retType: /* u16 */ DataType.U64,
3281
+ paramsType: [],
3282
+ },
3283
+ uniffi_slim_bindings_checksum_method_context_is_deadline_exceeded: {
3284
+ library: "libslim_bindings",
3285
+ retType: /* u16 */ DataType.U64,
3286
+ paramsType: [],
3287
+ },
3288
+ uniffi_slim_bindings_checksum_method_context_metadata: {
3289
+ library: "libslim_bindings",
3290
+ retType: /* u16 */ DataType.U64,
3291
+ paramsType: [],
3292
+ },
3293
+ uniffi_slim_bindings_checksum_method_context_remaining_time: {
3294
+ library: "libslim_bindings",
3295
+ retType: /* u16 */ DataType.U64,
3296
+ paramsType: [],
3297
+ },
3298
+ uniffi_slim_bindings_checksum_method_context_session_id: {
3299
+ library: "libslim_bindings",
3300
+ retType: /* u16 */ DataType.U64,
3301
+ paramsType: [],
3302
+ },
3303
+ uniffi_slim_bindings_checksum_method_streamstreamhandler_handle: {
3304
+ library: "libslim_bindings",
3305
+ retType: /* u16 */ DataType.U64,
3306
+ paramsType: [],
3307
+ },
3308
+ uniffi_slim_bindings_checksum_method_streamunaryhandler_handle: {
3309
+ library: "libslim_bindings",
3310
+ retType: /* u16 */ DataType.U64,
3311
+ paramsType: [],
3312
+ },
3313
+ uniffi_slim_bindings_checksum_method_unarystreamhandler_handle: {
3314
+ library: "libslim_bindings",
3315
+ retType: /* u16 */ DataType.U64,
3316
+ paramsType: [],
3317
+ },
3318
+ uniffi_slim_bindings_checksum_method_unaryunaryhandler_handle: {
3319
+ library: "libslim_bindings",
3320
+ retType: /* u16 */ DataType.U64,
3321
+ paramsType: [],
3322
+ },
3323
+ uniffi_slim_bindings_checksum_method_server_register_stream_stream: {
3324
+ library: "libslim_bindings",
3325
+ retType: /* u16 */ DataType.U64,
3326
+ paramsType: [],
3327
+ },
3328
+ uniffi_slim_bindings_checksum_method_server_register_stream_unary: {
3329
+ library: "libslim_bindings",
3330
+ retType: /* u16 */ DataType.U64,
3331
+ paramsType: [],
3332
+ },
3333
+ uniffi_slim_bindings_checksum_method_server_register_unary_stream: {
3334
+ library: "libslim_bindings",
3335
+ retType: /* u16 */ DataType.U64,
3336
+ paramsType: [],
3337
+ },
3338
+ uniffi_slim_bindings_checksum_method_server_register_unary_unary: {
3339
+ library: "libslim_bindings",
3340
+ retType: /* u16 */ DataType.U64,
3341
+ paramsType: [],
3342
+ },
3343
+ uniffi_slim_bindings_checksum_method_server_serve: {
3344
+ library: "libslim_bindings",
3345
+ retType: /* u16 */ DataType.U64,
3346
+ paramsType: [],
3347
+ },
3348
+ uniffi_slim_bindings_checksum_method_server_serve_async: {
3349
+ library: "libslim_bindings",
3350
+ retType: /* u16 */ DataType.U64,
3351
+ paramsType: [],
3352
+ },
3353
+ uniffi_slim_bindings_checksum_method_server_shutdown: {
3354
+ library: "libslim_bindings",
3355
+ retType: /* u16 */ DataType.U64,
3356
+ paramsType: [],
3357
+ },
3358
+ uniffi_slim_bindings_checksum_method_server_shutdown_async: {
3359
+ library: "libslim_bindings",
3360
+ retType: /* u16 */ DataType.U64,
3361
+ paramsType: [],
3362
+ },
3363
+ uniffi_slim_bindings_checksum_method_bidistreamhandler_close_send: {
3364
+ library: "libslim_bindings",
3365
+ retType: /* u16 */ DataType.U64,
3366
+ paramsType: [],
3367
+ },
3368
+ uniffi_slim_bindings_checksum_method_bidistreamhandler_close_send_async: {
3369
+ library: "libslim_bindings",
3370
+ retType: /* u16 */ DataType.U64,
3371
+ paramsType: [],
3372
+ },
3373
+ uniffi_slim_bindings_checksum_method_bidistreamhandler_recv: {
3374
+ library: "libslim_bindings",
3375
+ retType: /* u16 */ DataType.U64,
3376
+ paramsType: [],
3377
+ },
3378
+ uniffi_slim_bindings_checksum_method_bidistreamhandler_recv_async: {
3379
+ library: "libslim_bindings",
3380
+ retType: /* u16 */ DataType.U64,
3381
+ paramsType: [],
3382
+ },
3383
+ uniffi_slim_bindings_checksum_method_bidistreamhandler_send: {
3384
+ library: "libslim_bindings",
3385
+ retType: /* u16 */ DataType.U64,
3386
+ paramsType: [],
3387
+ },
3388
+ uniffi_slim_bindings_checksum_method_bidistreamhandler_send_async: {
3389
+ library: "libslim_bindings",
3390
+ retType: /* u16 */ DataType.U64,
3391
+ paramsType: [],
3392
+ },
3393
+ uniffi_slim_bindings_checksum_method_multicastbidistreamhandler_close_send: {
3394
+ library: "libslim_bindings",
3395
+ retType: /* u16 */ DataType.U64,
3396
+ paramsType: [],
3397
+ },
3398
+ uniffi_slim_bindings_checksum_method_multicastbidistreamhandler_close_send_async: {
3399
+ library: "libslim_bindings",
3400
+ retType: /* u16 */ DataType.U64,
3401
+ paramsType: [],
3402
+ },
3403
+ uniffi_slim_bindings_checksum_method_multicastbidistreamhandler_recv: {
3404
+ library: "libslim_bindings",
3405
+ retType: /* u16 */ DataType.U64,
3406
+ paramsType: [],
3407
+ },
3408
+ uniffi_slim_bindings_checksum_method_multicastbidistreamhandler_recv_async: {
3409
+ library: "libslim_bindings",
3410
+ retType: /* u16 */ DataType.U64,
3411
+ paramsType: [],
3412
+ },
3413
+ uniffi_slim_bindings_checksum_method_multicastbidistreamhandler_send: {
3414
+ library: "libslim_bindings",
3415
+ retType: /* u16 */ DataType.U64,
3416
+ paramsType: [],
3417
+ },
3418
+ uniffi_slim_bindings_checksum_method_multicastbidistreamhandler_send_async: {
3419
+ library: "libslim_bindings",
3420
+ retType: /* u16 */ DataType.U64,
3421
+ paramsType: [],
3422
+ },
3423
+ uniffi_slim_bindings_checksum_method_multicastresponsereader_next: {
3424
+ library: "libslim_bindings",
3425
+ retType: /* u16 */ DataType.U64,
3426
+ paramsType: [],
3427
+ },
3428
+ uniffi_slim_bindings_checksum_method_multicastresponsereader_next_async: {
3429
+ library: "libslim_bindings",
3430
+ retType: /* u16 */ DataType.U64,
3431
+ paramsType: [],
3432
+ },
3433
+ uniffi_slim_bindings_checksum_method_requeststream_next: {
3434
+ library: "libslim_bindings",
3435
+ retType: /* u16 */ DataType.U64,
3436
+ paramsType: [],
3437
+ },
3438
+ uniffi_slim_bindings_checksum_method_requeststream_next_async: {
3439
+ library: "libslim_bindings",
3440
+ retType: /* u16 */ DataType.U64,
3441
+ paramsType: [],
3442
+ },
3443
+ uniffi_slim_bindings_checksum_method_requeststreamwriter_finalize_async: {
3444
+ library: "libslim_bindings",
3445
+ retType: /* u16 */ DataType.U64,
3446
+ paramsType: [],
3447
+ },
3448
+ uniffi_slim_bindings_checksum_method_requeststreamwriter_finalize_stream: {
3449
+ library: "libslim_bindings",
3450
+ retType: /* u16 */ DataType.U64,
3451
+ paramsType: [],
3452
+ },
3453
+ uniffi_slim_bindings_checksum_method_requeststreamwriter_finalize_stream_async: {
3454
+ library: "libslim_bindings",
3455
+ retType: /* u16 */ DataType.U64,
3456
+ paramsType: [],
3457
+ },
3458
+ uniffi_slim_bindings_checksum_method_requeststreamwriter_send: {
3459
+ library: "libslim_bindings",
3460
+ retType: /* u16 */ DataType.U64,
3461
+ paramsType: [],
3462
+ },
3463
+ uniffi_slim_bindings_checksum_method_requeststreamwriter_send_async: {
3464
+ library: "libslim_bindings",
3465
+ retType: /* u16 */ DataType.U64,
3466
+ paramsType: [],
3467
+ },
3468
+ uniffi_slim_bindings_checksum_method_responsesink_close: {
3469
+ library: "libslim_bindings",
3470
+ retType: /* u16 */ DataType.U64,
3471
+ paramsType: [],
3472
+ },
3473
+ uniffi_slim_bindings_checksum_method_responsesink_close_async: {
3474
+ library: "libslim_bindings",
3475
+ retType: /* u16 */ DataType.U64,
3476
+ paramsType: [],
3477
+ },
3478
+ uniffi_slim_bindings_checksum_method_responsesink_is_closed: {
3479
+ library: "libslim_bindings",
3480
+ retType: /* u16 */ DataType.U64,
3481
+ paramsType: [],
3482
+ },
3483
+ uniffi_slim_bindings_checksum_method_responsesink_is_closed_async: {
3484
+ library: "libslim_bindings",
3485
+ retType: /* u16 */ DataType.U64,
3486
+ paramsType: [],
3487
+ },
3488
+ uniffi_slim_bindings_checksum_method_responsesink_send: {
3489
+ library: "libslim_bindings",
3490
+ retType: /* u16 */ DataType.U64,
3491
+ paramsType: [],
3492
+ },
3493
+ uniffi_slim_bindings_checksum_method_responsesink_send_async: {
3494
+ library: "libslim_bindings",
3495
+ retType: /* u16 */ DataType.U64,
3496
+ paramsType: [],
3497
+ },
3498
+ uniffi_slim_bindings_checksum_method_responsesink_send_error: {
3499
+ library: "libslim_bindings",
3500
+ retType: /* u16 */ DataType.U64,
3501
+ paramsType: [],
3502
+ },
3503
+ uniffi_slim_bindings_checksum_method_responsesink_send_error_async: {
3504
+ library: "libslim_bindings",
3505
+ retType: /* u16 */ DataType.U64,
3506
+ paramsType: [],
3507
+ },
3508
+ uniffi_slim_bindings_checksum_method_responsestreamreader_next: {
3509
+ library: "libslim_bindings",
3510
+ retType: /* u16 */ DataType.U64,
3511
+ paramsType: [],
3512
+ },
3513
+ uniffi_slim_bindings_checksum_method_responsestreamreader_next_async: {
3514
+ library: "libslim_bindings",
3515
+ retType: /* u16 */ DataType.U64,
3516
+ paramsType: [],
3517
+ },
3518
+ uniffi_slim_bindings_checksum_constructor_app_new: {
3519
+ library: "libslim_bindings",
3520
+ retType: /* u16 */ DataType.U64,
3521
+ paramsType: [],
3522
+ },
3523
+ uniffi_slim_bindings_checksum_constructor_app_new_with_direction: {
3524
+ library: "libslim_bindings",
3525
+ retType: /* u16 */ DataType.U64,
3526
+ paramsType: [],
3527
+ },
3528
+ uniffi_slim_bindings_checksum_constructor_app_new_with_secret: {
3529
+ library: "libslim_bindings",
3530
+ retType: /* u16 */ DataType.U64,
3531
+ paramsType: [],
3532
+ },
3533
+ uniffi_slim_bindings_checksum_constructor_name_from_string: {
3534
+ library: "libslim_bindings",
3535
+ retType: /* u16 */ DataType.U64,
3536
+ paramsType: [],
3537
+ },
3538
+ uniffi_slim_bindings_checksum_constructor_name_new: {
3539
+ library: "libslim_bindings",
3540
+ retType: /* u16 */ DataType.U64,
3541
+ paramsType: [],
3542
+ },
3543
+ uniffi_slim_bindings_checksum_constructor_name_new_with_id: {
3544
+ library: "libslim_bindings",
3545
+ retType: /* u16 */ DataType.U64,
3546
+ paramsType: [],
3547
+ },
3548
+ uniffi_slim_bindings_checksum_constructor_service_new: {
3549
+ library: "libslim_bindings",
3550
+ retType: /* u16 */ DataType.U64,
3551
+ paramsType: [],
3552
+ },
3553
+ uniffi_slim_bindings_checksum_constructor_service_new_with_config: {
3554
+ library: "libslim_bindings",
3555
+ retType: /* u16 */ DataType.U64,
3556
+ paramsType: [],
3557
+ },
3558
+ uniffi_slim_bindings_checksum_constructor_channel_new: {
3559
+ library: "libslim_bindings",
3560
+ retType: /* u16 */ DataType.U64,
3561
+ paramsType: [],
3562
+ },
3563
+ uniffi_slim_bindings_checksum_constructor_channel_new_group: {
3564
+ library: "libslim_bindings",
3565
+ retType: /* u16 */ DataType.U64,
3566
+ paramsType: [],
3567
+ },
3568
+ uniffi_slim_bindings_checksum_constructor_channel_new_group_with_connection: {
3569
+ library: "libslim_bindings",
3570
+ retType: /* u16 */ DataType.U64,
3571
+ paramsType: [],
3572
+ },
3573
+ uniffi_slim_bindings_checksum_constructor_channel_new_with_connection: {
3574
+ library: "libslim_bindings",
3575
+ retType: /* u16 */ DataType.U64,
3576
+ paramsType: [],
3577
+ },
3578
+ uniffi_slim_bindings_checksum_constructor_server_new: {
3579
+ library: "libslim_bindings",
3580
+ retType: /* u16 */ DataType.U64,
3581
+ paramsType: [],
3582
+ },
3583
+ uniffi_slim_bindings_checksum_constructor_server_new_with_connection: {
3584
+ library: "libslim_bindings",
3585
+ retType: /* u16 */ DataType.U64,
3586
+ paramsType: [],
3587
+ },
3588
+ ffi_slim_bindings_uniffi_contract_version: {
3589
+ library: "libslim_bindings",
3590
+ retType: /* u32 */ DataType.U64,
3591
+ paramsType: [],
3592
+ },
3593
+ });
3594
+ export default FFI_DYNAMIC_LIB;