@agntcy/slim-bindings-node-linux-arm64-gnu 0.1.2 → 0.1.4
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.
- package/libslim_bindings.so +0 -0
- package/package.json +1 -1
- package/slim-bindings-node.d.ts +102 -66
- package/slim-bindings-sys.d.ts +3 -3
package/libslim_bindings.so
CHANGED
|
Binary file
|
package/package.json
CHANGED
package/slim-bindings-node.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { RustBuffer, UniffiAbstractObject, uniffiTypeNameSymbol, destructorGuardSymbol, pointerLiteralSymbol } from 'uniffi-bindgen-react-native';
|
|
1
|
+
import { type UniffiByteArray, RustBuffer, UniffiAbstractObject, UniffiRustArcPtr, UnsafeMutableRawPointer, uniffiTypeNameSymbol, destructorGuardSymbol, pointerLiteralSymbol } from 'uniffi-bindgen-react-native';
|
|
2
2
|
/**
|
|
3
3
|
* Basic authentication configuration
|
|
4
4
|
*/
|
|
@@ -11,12 +11,12 @@ export declare const BasicAuth: Readonly<{
|
|
|
11
11
|
* Create a frozen instance of {@link BasicAuth}, with defaults specified
|
|
12
12
|
* in Rust, in the {@link slim_bindings} crate.
|
|
13
13
|
*/
|
|
14
|
-
create:
|
|
14
|
+
create: (partial: Partial<BasicAuth> & Required<Omit<BasicAuth, never>>) => BasicAuth;
|
|
15
15
|
/**
|
|
16
16
|
* Create a frozen instance of {@link BasicAuth}, with defaults specified
|
|
17
17
|
* in Rust, in the {@link slim_bindings} crate.
|
|
18
18
|
*/
|
|
19
|
-
new:
|
|
19
|
+
new: (partial: Partial<BasicAuth> & Required<Omit<BasicAuth, never>>) => BasicAuth;
|
|
20
20
|
/**
|
|
21
21
|
* Defaults specified in the {@link slim_bindings} crate.
|
|
22
22
|
*/
|
|
@@ -44,12 +44,12 @@ export declare const BuildInfo: Readonly<{
|
|
|
44
44
|
* Create a frozen instance of {@link BuildInfo}, with defaults specified
|
|
45
45
|
* in Rust, in the {@link slim_bindings} crate.
|
|
46
46
|
*/
|
|
47
|
-
create:
|
|
47
|
+
create: (partial: Partial<BuildInfo> & Required<Omit<BuildInfo, never>>) => BuildInfo;
|
|
48
48
|
/**
|
|
49
49
|
* Create a frozen instance of {@link BuildInfo}, with defaults specified
|
|
50
50
|
* in Rust, in the {@link slim_bindings} crate.
|
|
51
51
|
*/
|
|
52
|
-
new:
|
|
52
|
+
new: (partial: Partial<BuildInfo> & Required<Omit<BuildInfo, never>>) => BuildInfo;
|
|
53
53
|
/**
|
|
54
54
|
* Defaults specified in the {@link slim_bindings} crate.
|
|
55
55
|
*/
|
|
@@ -110,12 +110,12 @@ export declare const ClientConfig: Readonly<{
|
|
|
110
110
|
* Create a frozen instance of {@link ClientConfig}, with defaults specified
|
|
111
111
|
* in Rust, in the {@link slim_bindings} crate.
|
|
112
112
|
*/
|
|
113
|
-
create:
|
|
113
|
+
create: (partial: Partial<ClientConfig> & Required<Omit<ClientConfig, never>>) => ClientConfig;
|
|
114
114
|
/**
|
|
115
115
|
* Create a frozen instance of {@link ClientConfig}, with defaults specified
|
|
116
116
|
* in Rust, in the {@link slim_bindings} crate.
|
|
117
117
|
*/
|
|
118
|
-
new:
|
|
118
|
+
new: (partial: Partial<ClientConfig> & Required<Omit<ClientConfig, never>>) => ClientConfig;
|
|
119
119
|
/**
|
|
120
120
|
* Defaults specified in the {@link slim_bindings} crate.
|
|
121
121
|
*/
|
|
@@ -146,12 +146,12 @@ export declare const ClientJwtAuth: Readonly<{
|
|
|
146
146
|
* Create a frozen instance of {@link ClientJwtAuth}, with defaults specified
|
|
147
147
|
* in Rust, in the {@link slim_bindings} crate.
|
|
148
148
|
*/
|
|
149
|
-
create:
|
|
149
|
+
create: (partial: Partial<ClientJwtAuth> & Required<Omit<ClientJwtAuth, never>>) => ClientJwtAuth;
|
|
150
150
|
/**
|
|
151
151
|
* Create a frozen instance of {@link ClientJwtAuth}, with defaults specified
|
|
152
152
|
* in Rust, in the {@link slim_bindings} crate.
|
|
153
153
|
*/
|
|
154
|
-
new:
|
|
154
|
+
new: (partial: Partial<ClientJwtAuth> & Required<Omit<ClientJwtAuth, never>>) => ClientJwtAuth;
|
|
155
155
|
/**
|
|
156
156
|
* Defaults specified in the {@link slim_bindings} crate.
|
|
157
157
|
*/
|
|
@@ -173,12 +173,12 @@ export declare const DataplaneConfig: Readonly<{
|
|
|
173
173
|
* Create a frozen instance of {@link DataplaneConfig}, with defaults specified
|
|
174
174
|
* in Rust, in the {@link slim_bindings} crate.
|
|
175
175
|
*/
|
|
176
|
-
create:
|
|
176
|
+
create: (partial: Partial<DataplaneConfig> & Required<Omit<DataplaneConfig, never>>) => DataplaneConfig;
|
|
177
177
|
/**
|
|
178
178
|
* Create a frozen instance of {@link DataplaneConfig}, with defaults specified
|
|
179
179
|
* in Rust, in the {@link slim_bindings} crate.
|
|
180
180
|
*/
|
|
181
|
-
new:
|
|
181
|
+
new: (partial: Partial<DataplaneConfig> & Required<Omit<DataplaneConfig, never>>) => DataplaneConfig;
|
|
182
182
|
/**
|
|
183
183
|
* Defaults specified in the {@link slim_bindings} crate.
|
|
184
184
|
*/
|
|
@@ -209,12 +209,12 @@ export declare const ExponentialBackoff: Readonly<{
|
|
|
209
209
|
* Create a frozen instance of {@link ExponentialBackoff}, with defaults specified
|
|
210
210
|
* in Rust, in the {@link slim_bindings} crate.
|
|
211
211
|
*/
|
|
212
|
-
create:
|
|
212
|
+
create: (partial: Partial<ExponentialBackoff> & Required<Omit<ExponentialBackoff, never>>) => ExponentialBackoff;
|
|
213
213
|
/**
|
|
214
214
|
* Create a frozen instance of {@link ExponentialBackoff}, with defaults specified
|
|
215
215
|
* in Rust, in the {@link slim_bindings} crate.
|
|
216
216
|
*/
|
|
217
|
-
new:
|
|
217
|
+
new: (partial: Partial<ExponentialBackoff> & Required<Omit<ExponentialBackoff, never>>) => ExponentialBackoff;
|
|
218
218
|
/**
|
|
219
219
|
* Defaults specified in the {@link slim_bindings} crate.
|
|
220
220
|
*/
|
|
@@ -236,12 +236,12 @@ export declare const FixedIntervalBackoff: Readonly<{
|
|
|
236
236
|
* Create a frozen instance of {@link FixedIntervalBackoff}, with defaults specified
|
|
237
237
|
* in Rust, in the {@link slim_bindings} crate.
|
|
238
238
|
*/
|
|
239
|
-
create:
|
|
239
|
+
create: (partial: Partial<FixedIntervalBackoff> & Required<Omit<FixedIntervalBackoff, never>>) => FixedIntervalBackoff;
|
|
240
240
|
/**
|
|
241
241
|
* Create a frozen instance of {@link FixedIntervalBackoff}, with defaults specified
|
|
242
242
|
* in Rust, in the {@link slim_bindings} crate.
|
|
243
243
|
*/
|
|
244
|
-
new:
|
|
244
|
+
new: (partial: Partial<FixedIntervalBackoff> & Required<Omit<FixedIntervalBackoff, never>>) => FixedIntervalBackoff;
|
|
245
245
|
/**
|
|
246
246
|
* Defaults specified in the {@link slim_bindings} crate.
|
|
247
247
|
*/
|
|
@@ -272,12 +272,12 @@ export declare const JwtAuth: Readonly<{
|
|
|
272
272
|
* Create a frozen instance of {@link JwtAuth}, with defaults specified
|
|
273
273
|
* in Rust, in the {@link slim_bindings} crate.
|
|
274
274
|
*/
|
|
275
|
-
create:
|
|
275
|
+
create: (partial: Partial<JwtAuth> & Required<Omit<JwtAuth, never>>) => JwtAuth;
|
|
276
276
|
/**
|
|
277
277
|
* Create a frozen instance of {@link JwtAuth}, with defaults specified
|
|
278
278
|
* in Rust, in the {@link slim_bindings} crate.
|
|
279
279
|
*/
|
|
280
|
-
new:
|
|
280
|
+
new: (partial: Partial<JwtAuth> & Required<Omit<JwtAuth, never>>) => JwtAuth;
|
|
281
281
|
/**
|
|
282
282
|
* Defaults specified in the {@link slim_bindings} crate.
|
|
283
283
|
*/
|
|
@@ -302,12 +302,12 @@ export declare const JwtKeyConfig: Readonly<{
|
|
|
302
302
|
* Create a frozen instance of {@link JwtKeyConfig}, with defaults specified
|
|
303
303
|
* in Rust, in the {@link slim_bindings} crate.
|
|
304
304
|
*/
|
|
305
|
-
create:
|
|
305
|
+
create: (partial: Partial<JwtKeyConfig> & Required<Omit<JwtKeyConfig, never>>) => JwtKeyConfig;
|
|
306
306
|
/**
|
|
307
307
|
* Create a frozen instance of {@link JwtKeyConfig}, with defaults specified
|
|
308
308
|
* in Rust, in the {@link slim_bindings} crate.
|
|
309
309
|
*/
|
|
310
|
-
new:
|
|
310
|
+
new: (partial: Partial<JwtKeyConfig> & Required<Omit<JwtKeyConfig, never>>) => JwtKeyConfig;
|
|
311
311
|
/**
|
|
312
312
|
* Defaults specified in the {@link slim_bindings} crate.
|
|
313
313
|
*/
|
|
@@ -335,12 +335,12 @@ export declare const KeepaliveConfig: Readonly<{
|
|
|
335
335
|
* Create a frozen instance of {@link KeepaliveConfig}, with defaults specified
|
|
336
336
|
* in Rust, in the {@link slim_bindings} crate.
|
|
337
337
|
*/
|
|
338
|
-
create:
|
|
338
|
+
create: (partial: Partial<KeepaliveConfig> & Required<Omit<KeepaliveConfig, never>>) => KeepaliveConfig;
|
|
339
339
|
/**
|
|
340
340
|
* Create a frozen instance of {@link KeepaliveConfig}, with defaults specified
|
|
341
341
|
* in Rust, in the {@link slim_bindings} crate.
|
|
342
342
|
*/
|
|
343
|
-
new:
|
|
343
|
+
new: (partial: Partial<KeepaliveConfig> & Required<Omit<KeepaliveConfig, never>>) => KeepaliveConfig;
|
|
344
344
|
/**
|
|
345
345
|
* Defaults specified in the {@link slim_bindings} crate.
|
|
346
346
|
*/
|
|
@@ -371,12 +371,12 @@ export declare const KeepaliveServerParameters: Readonly<{
|
|
|
371
371
|
* Create a frozen instance of {@link KeepaliveServerParameters}, with defaults specified
|
|
372
372
|
* in Rust, in the {@link slim_bindings} crate.
|
|
373
373
|
*/
|
|
374
|
-
create:
|
|
374
|
+
create: (partial: Partial<KeepaliveServerParameters> & Required<Omit<KeepaliveServerParameters, never>>) => KeepaliveServerParameters;
|
|
375
375
|
/**
|
|
376
376
|
* Create a frozen instance of {@link KeepaliveServerParameters}, with defaults specified
|
|
377
377
|
* in Rust, in the {@link slim_bindings} crate.
|
|
378
378
|
*/
|
|
379
|
-
new:
|
|
379
|
+
new: (partial: Partial<KeepaliveServerParameters> & Required<Omit<KeepaliveServerParameters, never>>) => KeepaliveServerParameters;
|
|
380
380
|
/**
|
|
381
381
|
* Defaults specified in the {@link slim_bindings} crate.
|
|
382
382
|
*/
|
|
@@ -414,12 +414,12 @@ export declare const MessageContext: Readonly<{
|
|
|
414
414
|
* Create a frozen instance of {@link MessageContext}, with defaults specified
|
|
415
415
|
* in Rust, in the {@link slim_bindings} crate.
|
|
416
416
|
*/
|
|
417
|
-
create:
|
|
417
|
+
create: (partial: Partial<MessageContext> & Required<Omit<MessageContext, never>>) => MessageContext;
|
|
418
418
|
/**
|
|
419
419
|
* Create a frozen instance of {@link MessageContext}, with defaults specified
|
|
420
420
|
* in Rust, in the {@link slim_bindings} crate.
|
|
421
421
|
*/
|
|
422
|
-
new:
|
|
422
|
+
new: (partial: Partial<MessageContext> & Required<Omit<MessageContext, never>>) => MessageContext;
|
|
423
423
|
/**
|
|
424
424
|
* Defaults specified in the {@link slim_bindings} crate.
|
|
425
425
|
*/
|
|
@@ -450,12 +450,12 @@ export declare const ProxyConfig: Readonly<{
|
|
|
450
450
|
* Create a frozen instance of {@link ProxyConfig}, with defaults specified
|
|
451
451
|
* in Rust, in the {@link slim_bindings} crate.
|
|
452
452
|
*/
|
|
453
|
-
create:
|
|
453
|
+
create: (partial: Partial<ProxyConfig> & Required<Omit<ProxyConfig, never>>) => ProxyConfig;
|
|
454
454
|
/**
|
|
455
455
|
* Create a frozen instance of {@link ProxyConfig}, with defaults specified
|
|
456
456
|
* in Rust, in the {@link slim_bindings} crate.
|
|
457
457
|
*/
|
|
458
|
-
new:
|
|
458
|
+
new: (partial: Partial<ProxyConfig> & Required<Omit<ProxyConfig, never>>) => ProxyConfig;
|
|
459
459
|
/**
|
|
460
460
|
* Defaults specified in the {@link slim_bindings} crate.
|
|
461
461
|
*/
|
|
@@ -473,12 +473,12 @@ export declare const ReceivedMessage: Readonly<{
|
|
|
473
473
|
* Create a frozen instance of {@link ReceivedMessage}, with defaults specified
|
|
474
474
|
* in Rust, in the {@link slim_bindings} crate.
|
|
475
475
|
*/
|
|
476
|
-
create:
|
|
476
|
+
create: (partial: Partial<ReceivedMessage> & Required<Omit<ReceivedMessage, never>>) => ReceivedMessage;
|
|
477
477
|
/**
|
|
478
478
|
* Create a frozen instance of {@link ReceivedMessage}, with defaults specified
|
|
479
479
|
* in Rust, in the {@link slim_bindings} crate.
|
|
480
480
|
*/
|
|
481
|
-
new:
|
|
481
|
+
new: (partial: Partial<ReceivedMessage> & Required<Omit<ReceivedMessage, never>>) => ReceivedMessage;
|
|
482
482
|
/**
|
|
483
483
|
* Defaults specified in the {@link slim_bindings} crate.
|
|
484
484
|
*/
|
|
@@ -505,12 +505,12 @@ export declare const RuntimeConfig: Readonly<{
|
|
|
505
505
|
* Create a frozen instance of {@link RuntimeConfig}, with defaults specified
|
|
506
506
|
* in Rust, in the {@link slim_bindings} crate.
|
|
507
507
|
*/
|
|
508
|
-
create:
|
|
508
|
+
create: (partial: Partial<RuntimeConfig> & Required<Omit<RuntimeConfig, never>>) => RuntimeConfig;
|
|
509
509
|
/**
|
|
510
510
|
* Create a frozen instance of {@link RuntimeConfig}, with defaults specified
|
|
511
511
|
* in Rust, in the {@link slim_bindings} crate.
|
|
512
512
|
*/
|
|
513
|
-
new:
|
|
513
|
+
new: (partial: Partial<RuntimeConfig> & Required<Omit<RuntimeConfig, never>>) => RuntimeConfig;
|
|
514
514
|
/**
|
|
515
515
|
* Defaults specified in the {@link slim_bindings} crate.
|
|
516
516
|
*/
|
|
@@ -559,12 +559,12 @@ export declare const ServerConfig: Readonly<{
|
|
|
559
559
|
* Create a frozen instance of {@link ServerConfig}, with defaults specified
|
|
560
560
|
* in Rust, in the {@link slim_bindings} crate.
|
|
561
561
|
*/
|
|
562
|
-
create:
|
|
562
|
+
create: (partial: Partial<ServerConfig> & Required<Omit<ServerConfig, never>>) => ServerConfig;
|
|
563
563
|
/**
|
|
564
564
|
* Create a frozen instance of {@link ServerConfig}, with defaults specified
|
|
565
565
|
* in Rust, in the {@link slim_bindings} crate.
|
|
566
566
|
*/
|
|
567
|
-
new:
|
|
567
|
+
new: (partial: Partial<ServerConfig> & Required<Omit<ServerConfig, never>>) => ServerConfig;
|
|
568
568
|
/**
|
|
569
569
|
* Defaults specified in the {@link slim_bindings} crate.
|
|
570
570
|
*/
|
|
@@ -589,12 +589,12 @@ export declare const ServiceConfig: Readonly<{
|
|
|
589
589
|
* Create a frozen instance of {@link ServiceConfig}, with defaults specified
|
|
590
590
|
* in Rust, in the {@link slim_bindings} crate.
|
|
591
591
|
*/
|
|
592
|
-
create:
|
|
592
|
+
create: (partial: Partial<ServiceConfig> & Required<Omit<ServiceConfig, never>>) => ServiceConfig;
|
|
593
593
|
/**
|
|
594
594
|
* Create a frozen instance of {@link ServiceConfig}, with defaults specified
|
|
595
595
|
* in Rust, in the {@link slim_bindings} crate.
|
|
596
596
|
*/
|
|
597
|
-
new:
|
|
597
|
+
new: (partial: Partial<ServiceConfig> & Required<Omit<ServiceConfig, never>>) => ServiceConfig;
|
|
598
598
|
/**
|
|
599
599
|
* Defaults specified in the {@link slim_bindings} crate.
|
|
600
600
|
*/
|
|
@@ -625,12 +625,12 @@ export declare const SessionConfig: Readonly<{
|
|
|
625
625
|
* Create a frozen instance of {@link SessionConfig}, with defaults specified
|
|
626
626
|
* in Rust, in the {@link slim_bindings} crate.
|
|
627
627
|
*/
|
|
628
|
-
create:
|
|
628
|
+
create: (partial: Partial<SessionConfig> & Required<Omit<SessionConfig, never>>) => SessionConfig;
|
|
629
629
|
/**
|
|
630
630
|
* Create a frozen instance of {@link SessionConfig}, with defaults specified
|
|
631
631
|
* in Rust, in the {@link slim_bindings} crate.
|
|
632
632
|
*/
|
|
633
|
-
new:
|
|
633
|
+
new: (partial: Partial<SessionConfig> & Required<Omit<SessionConfig, never>>) => SessionConfig;
|
|
634
634
|
/**
|
|
635
635
|
* Defaults specified in the {@link slim_bindings} crate.
|
|
636
636
|
*/
|
|
@@ -654,12 +654,12 @@ export declare const SessionWithCompletion: Readonly<{
|
|
|
654
654
|
* Create a frozen instance of {@link SessionWithCompletion}, with defaults specified
|
|
655
655
|
* in Rust, in the {@link slim_bindings} crate.
|
|
656
656
|
*/
|
|
657
|
-
create:
|
|
657
|
+
create: (partial: Partial<SessionWithCompletion> & Required<Omit<SessionWithCompletion, never>>) => SessionWithCompletion;
|
|
658
658
|
/**
|
|
659
659
|
* Create a frozen instance of {@link SessionWithCompletion}, with defaults specified
|
|
660
660
|
* in Rust, in the {@link slim_bindings} crate.
|
|
661
661
|
*/
|
|
662
|
-
new:
|
|
662
|
+
new: (partial: Partial<SessionWithCompletion> & Required<Omit<SessionWithCompletion, never>>) => SessionWithCompletion;
|
|
663
663
|
/**
|
|
664
664
|
* Defaults specified in the {@link slim_bindings} crate.
|
|
665
665
|
*/
|
|
@@ -687,12 +687,12 @@ export declare const SpireConfig: Readonly<{
|
|
|
687
687
|
* Create a frozen instance of {@link SpireConfig}, with defaults specified
|
|
688
688
|
* in Rust, in the {@link slim_bindings} crate.
|
|
689
689
|
*/
|
|
690
|
-
create:
|
|
690
|
+
create: (partial: Partial<SpireConfig> & Required<Omit<SpireConfig, never>>) => SpireConfig;
|
|
691
691
|
/**
|
|
692
692
|
* Create a frozen instance of {@link SpireConfig}, with defaults specified
|
|
693
693
|
* in Rust, in the {@link slim_bindings} crate.
|
|
694
694
|
*/
|
|
695
|
-
new:
|
|
695
|
+
new: (partial: Partial<SpireConfig> & Required<Omit<SpireConfig, never>>) => SpireConfig;
|
|
696
696
|
/**
|
|
697
697
|
* Defaults specified in the {@link slim_bindings} crate.
|
|
698
698
|
*/
|
|
@@ -715,12 +715,12 @@ export declare const StaticJwtAuth: Readonly<{
|
|
|
715
715
|
* Create a frozen instance of {@link StaticJwtAuth}, with defaults specified
|
|
716
716
|
* in Rust, in the {@link slim_bindings} crate.
|
|
717
717
|
*/
|
|
718
|
-
create:
|
|
718
|
+
create: (partial: Partial<StaticJwtAuth> & Required<Omit<StaticJwtAuth, never>>) => StaticJwtAuth;
|
|
719
719
|
/**
|
|
720
720
|
* Create a frozen instance of {@link StaticJwtAuth}, with defaults specified
|
|
721
721
|
* in Rust, in the {@link slim_bindings} crate.
|
|
722
722
|
*/
|
|
723
|
-
new:
|
|
723
|
+
new: (partial: Partial<StaticJwtAuth> & Required<Omit<StaticJwtAuth, never>>) => StaticJwtAuth;
|
|
724
724
|
/**
|
|
725
725
|
* Defaults specified in the {@link slim_bindings} crate.
|
|
726
726
|
*/
|
|
@@ -755,12 +755,12 @@ export declare const TlsClientConfig: Readonly<{
|
|
|
755
755
|
* Create a frozen instance of {@link TlsClientConfig}, with defaults specified
|
|
756
756
|
* in Rust, in the {@link slim_bindings} crate.
|
|
757
757
|
*/
|
|
758
|
-
create:
|
|
758
|
+
create: (partial: Partial<TlsClientConfig> & Required<Omit<TlsClientConfig, never>>) => TlsClientConfig;
|
|
759
759
|
/**
|
|
760
760
|
* Create a frozen instance of {@link TlsClientConfig}, with defaults specified
|
|
761
761
|
* in Rust, in the {@link slim_bindings} crate.
|
|
762
762
|
*/
|
|
763
|
-
new:
|
|
763
|
+
new: (partial: Partial<TlsClientConfig> & Required<Omit<TlsClientConfig, never>>) => TlsClientConfig;
|
|
764
764
|
/**
|
|
765
765
|
* Defaults specified in the {@link slim_bindings} crate.
|
|
766
766
|
*/
|
|
@@ -794,12 +794,12 @@ export declare const TlsServerConfig: Readonly<{
|
|
|
794
794
|
* Create a frozen instance of {@link TlsServerConfig}, with defaults specified
|
|
795
795
|
* in Rust, in the {@link slim_bindings} crate.
|
|
796
796
|
*/
|
|
797
|
-
create:
|
|
797
|
+
create: (partial: Partial<TlsServerConfig> & Required<Omit<TlsServerConfig, never>>) => TlsServerConfig;
|
|
798
798
|
/**
|
|
799
799
|
* Create a frozen instance of {@link TlsServerConfig}, with defaults specified
|
|
800
800
|
* in Rust, in the {@link slim_bindings} crate.
|
|
801
801
|
*/
|
|
802
|
-
new:
|
|
802
|
+
new: (partial: Partial<TlsServerConfig> & Required<Omit<TlsServerConfig, never>>) => TlsServerConfig;
|
|
803
803
|
/**
|
|
804
804
|
* Defaults specified in the {@link slim_bindings} crate.
|
|
805
805
|
*/
|
|
@@ -829,12 +829,12 @@ export declare const TracingConfig: Readonly<{
|
|
|
829
829
|
* Create a frozen instance of {@link TracingConfig}, with defaults specified
|
|
830
830
|
* in Rust, in the {@link slim_bindings} crate.
|
|
831
831
|
*/
|
|
832
|
-
create:
|
|
832
|
+
create: (partial: Partial<TracingConfig> & Required<Omit<TracingConfig, never>>) => TracingConfig;
|
|
833
833
|
/**
|
|
834
834
|
* Create a frozen instance of {@link TracingConfig}, with defaults specified
|
|
835
835
|
* in Rust, in the {@link slim_bindings} crate.
|
|
836
836
|
*/
|
|
837
|
-
new:
|
|
837
|
+
new: (partial: Partial<TracingConfig> & Required<Omit<TracingConfig, never>>) => TracingConfig;
|
|
838
838
|
/**
|
|
839
839
|
* Defaults specified in the {@link slim_bindings} crate.
|
|
840
840
|
*/
|
|
@@ -858,6 +858,8 @@ export declare const FfiConverterTypeBackoffConfig: {
|
|
|
858
858
|
read(from: RustBuffer): BackoffConfig;
|
|
859
859
|
write(value: BackoffConfig, into: RustBuffer): void;
|
|
860
860
|
allocationSize(value: BackoffConfig): number;
|
|
861
|
+
lift(value: UniffiByteArray): BackoffConfig;
|
|
862
|
+
lower(value: BackoffConfig): UniffiByteArray;
|
|
861
863
|
};
|
|
862
864
|
/**
|
|
863
865
|
* CA certificate source configuration
|
|
@@ -900,6 +902,8 @@ export declare const FfiConverterTypeCaSource: {
|
|
|
900
902
|
read(from: RustBuffer): CaSource;
|
|
901
903
|
write(value: CaSource, into: RustBuffer): void;
|
|
902
904
|
allocationSize(value: CaSource): number;
|
|
905
|
+
lift(value: UniffiByteArray): CaSource;
|
|
906
|
+
lower(value: CaSource): UniffiByteArray;
|
|
903
907
|
};
|
|
904
908
|
/**
|
|
905
909
|
* Authentication configuration enum for client
|
|
@@ -926,6 +930,8 @@ export declare const FfiConverterTypeClientAuthenticationConfig: {
|
|
|
926
930
|
read(from: RustBuffer): ClientAuthenticationConfig;
|
|
927
931
|
write(value: ClientAuthenticationConfig, into: RustBuffer): void;
|
|
928
932
|
allocationSize(value: ClientAuthenticationConfig): number;
|
|
933
|
+
lift(value: UniffiByteArray): ClientAuthenticationConfig;
|
|
934
|
+
lower(value: ClientAuthenticationConfig): UniffiByteArray;
|
|
929
935
|
};
|
|
930
936
|
/**
|
|
931
937
|
* gRPC status codes
|
|
@@ -1003,6 +1009,8 @@ export declare const FfiConverterTypeCode: {
|
|
|
1003
1009
|
read(from: RustBuffer): Code;
|
|
1004
1010
|
write(value: Code, into: RustBuffer): void;
|
|
1005
1011
|
allocationSize(value: Code): number;
|
|
1012
|
+
lift(value: UniffiByteArray): Code;
|
|
1013
|
+
lower(value: Code): UniffiByteArray;
|
|
1006
1014
|
};
|
|
1007
1015
|
/**
|
|
1008
1016
|
* Compression type for gRPC messages
|
|
@@ -1012,6 +1020,8 @@ export declare const FfiConverterTypeCompressionType: {
|
|
|
1012
1020
|
read(from: RustBuffer): CompressionType;
|
|
1013
1021
|
write(value: CompressionType, into: RustBuffer): void;
|
|
1014
1022
|
allocationSize(value: CompressionType): number;
|
|
1023
|
+
lift(value: UniffiByteArray): CompressionType;
|
|
1024
|
+
lower(value: CompressionType): UniffiByteArray;
|
|
1015
1025
|
};
|
|
1016
1026
|
/**
|
|
1017
1027
|
* Direction enum
|
|
@@ -1022,6 +1032,8 @@ export declare const FfiConverterTypeDirection: {
|
|
|
1022
1032
|
read(from: RustBuffer): Direction;
|
|
1023
1033
|
write(value: Direction, into: RustBuffer): void;
|
|
1024
1034
|
allocationSize(value: Direction): number;
|
|
1035
|
+
lift(value: UniffiByteArray): Direction;
|
|
1036
|
+
lower(value: Direction): UniffiByteArray;
|
|
1025
1037
|
};
|
|
1026
1038
|
/**
|
|
1027
1039
|
* Identity provider configuration - used to prove identity to others
|
|
@@ -1074,6 +1086,8 @@ export declare const FfiConverterTypeIdentityProviderConfig: {
|
|
|
1074
1086
|
read(from: RustBuffer): IdentityProviderConfig;
|
|
1075
1087
|
write(value: IdentityProviderConfig, into: RustBuffer): void;
|
|
1076
1088
|
allocationSize(value: IdentityProviderConfig): number;
|
|
1089
|
+
lift(value: UniffiByteArray): IdentityProviderConfig;
|
|
1090
|
+
lower(value: IdentityProviderConfig): UniffiByteArray;
|
|
1077
1091
|
};
|
|
1078
1092
|
/**
|
|
1079
1093
|
* Identity verifier configuration - used to verify identity of others
|
|
@@ -1117,6 +1131,8 @@ export declare const FfiConverterTypeIdentityVerifierConfig: {
|
|
|
1117
1131
|
read(from: RustBuffer): IdentityVerifierConfig;
|
|
1118
1132
|
write(value: IdentityVerifierConfig, into: RustBuffer): void;
|
|
1119
1133
|
allocationSize(value: IdentityVerifierConfig): number;
|
|
1134
|
+
lift(value: UniffiByteArray): IdentityVerifierConfig;
|
|
1135
|
+
lower(value: IdentityVerifierConfig): UniffiByteArray;
|
|
1120
1136
|
};
|
|
1121
1137
|
/**
|
|
1122
1138
|
* JWT signing/verification algorithm
|
|
@@ -1126,6 +1142,8 @@ export declare const FfiConverterTypeJwtAlgorithm: {
|
|
|
1126
1142
|
read(from: RustBuffer): JwtAlgorithm;
|
|
1127
1143
|
write(value: JwtAlgorithm, into: RustBuffer): void;
|
|
1128
1144
|
allocationSize(value: JwtAlgorithm): number;
|
|
1145
|
+
lift(value: UniffiByteArray): JwtAlgorithm;
|
|
1146
|
+
lower(value: JwtAlgorithm): UniffiByteArray;
|
|
1129
1147
|
};
|
|
1130
1148
|
/**
|
|
1131
1149
|
* JWT key data source
|
|
@@ -1153,6 +1171,8 @@ export declare const FfiConverterTypeJwtKeyData: {
|
|
|
1153
1171
|
read(from: RustBuffer): JwtKeyData;
|
|
1154
1172
|
write(value: JwtKeyData, into: RustBuffer): void;
|
|
1155
1173
|
allocationSize(value: JwtKeyData): number;
|
|
1174
|
+
lift(value: UniffiByteArray): JwtKeyData;
|
|
1175
|
+
lower(value: JwtKeyData): UniffiByteArray;
|
|
1156
1176
|
};
|
|
1157
1177
|
/**
|
|
1158
1178
|
* JWT key format
|
|
@@ -1162,6 +1182,8 @@ export declare const FfiConverterTypeJwtKeyFormat: {
|
|
|
1162
1182
|
read(from: RustBuffer): JwtKeyFormat;
|
|
1163
1183
|
write(value: JwtKeyFormat, into: RustBuffer): void;
|
|
1164
1184
|
allocationSize(value: JwtKeyFormat): number;
|
|
1185
|
+
lift(value: UniffiByteArray): JwtKeyFormat;
|
|
1186
|
+
lower(value: JwtKeyFormat): UniffiByteArray;
|
|
1165
1187
|
};
|
|
1166
1188
|
/**
|
|
1167
1189
|
* JWT key type (encoding, decoding, or autoresolve)
|
|
@@ -1195,6 +1217,8 @@ export declare const FfiConverterTypeJwtKeyType: {
|
|
|
1195
1217
|
read(from: RustBuffer): JwtKeyType;
|
|
1196
1218
|
write(value: JwtKeyType, into: RustBuffer): void;
|
|
1197
1219
|
allocationSize(value: JwtKeyType): number;
|
|
1220
|
+
lift(value: UniffiByteArray): JwtKeyType;
|
|
1221
|
+
lower(value: JwtKeyType): UniffiByteArray;
|
|
1198
1222
|
};
|
|
1199
1223
|
/**
|
|
1200
1224
|
* UniFFI-compatible RPC error
|
|
@@ -1207,6 +1231,8 @@ export declare const FfiConverterTypeRpcError: {
|
|
|
1207
1231
|
read(from: RustBuffer): RpcError;
|
|
1208
1232
|
write(value: RpcError, into: RustBuffer): void;
|
|
1209
1233
|
allocationSize(value: RpcError): number;
|
|
1234
|
+
lift(value: UniffiByteArray): "rpc";
|
|
1235
|
+
lower(value: "rpc"): UniffiByteArray;
|
|
1210
1236
|
};
|
|
1211
1237
|
/**
|
|
1212
1238
|
* Authentication configuration enum for server
|
|
@@ -1228,6 +1254,8 @@ export declare const FfiConverterTypeServerAuthenticationConfig: {
|
|
|
1228
1254
|
read(from: RustBuffer): ServerAuthenticationConfig;
|
|
1229
1255
|
write(value: ServerAuthenticationConfig, into: RustBuffer): void;
|
|
1230
1256
|
allocationSize(value: ServerAuthenticationConfig): number;
|
|
1257
|
+
lift(value: UniffiByteArray): ServerAuthenticationConfig;
|
|
1258
|
+
lower(value: ServerAuthenticationConfig): UniffiByteArray;
|
|
1231
1259
|
};
|
|
1232
1260
|
/**
|
|
1233
1261
|
* Session type enum
|
|
@@ -1237,6 +1265,8 @@ export declare const FfiConverterTypeSessionType: {
|
|
|
1237
1265
|
read(from: RustBuffer): SessionType;
|
|
1238
1266
|
write(value: SessionType, into: RustBuffer): void;
|
|
1239
1267
|
allocationSize(value: SessionType): number;
|
|
1268
|
+
lift(value: UniffiByteArray): SessionType;
|
|
1269
|
+
lower(value: SessionType): UniffiByteArray;
|
|
1240
1270
|
};
|
|
1241
1271
|
/**
|
|
1242
1272
|
* Error types for SLIM operations
|
|
@@ -1293,6 +1323,8 @@ export declare const FfiConverterTypeSlimError: {
|
|
|
1293
1323
|
read(from: RustBuffer): SlimError;
|
|
1294
1324
|
write(value: SlimError, into: RustBuffer): void;
|
|
1295
1325
|
allocationSize(value: SlimError): number;
|
|
1326
|
+
lift(value: UniffiByteArray): SlimError;
|
|
1327
|
+
lower(value: SlimError): UniffiByteArray;
|
|
1296
1328
|
};
|
|
1297
1329
|
/**
|
|
1298
1330
|
* Message from a stream
|
|
@@ -1322,6 +1354,8 @@ export declare const FfiConverterTypeStreamMessage: {
|
|
|
1322
1354
|
read(from: RustBuffer): StreamMessage;
|
|
1323
1355
|
write(value: StreamMessage, into: RustBuffer): void;
|
|
1324
1356
|
allocationSize(value: StreamMessage): number;
|
|
1357
|
+
lift(value: UniffiByteArray): StreamMessage;
|
|
1358
|
+
lower(value: StreamMessage): UniffiByteArray;
|
|
1325
1359
|
};
|
|
1326
1360
|
/**
|
|
1327
1361
|
* TLS certificate and key source configuration
|
|
@@ -1366,6 +1400,8 @@ export declare const FfiConverterTypeTlsSource: {
|
|
|
1366
1400
|
read(from: RustBuffer): TlsSource;
|
|
1367
1401
|
write(value: TlsSource, into: RustBuffer): void;
|
|
1368
1402
|
allocationSize(value: TlsSource): number;
|
|
1403
|
+
lift(value: UniffiByteArray): TlsSource;
|
|
1404
|
+
lower(value: TlsSource): UniffiByteArray;
|
|
1369
1405
|
};
|
|
1370
1406
|
export type AppInterface = {
|
|
1371
1407
|
/**
|
|
@@ -1478,7 +1514,7 @@ export type AppInterface = {
|
|
|
1478
1514
|
* for flexibility.
|
|
1479
1515
|
*/
|
|
1480
1516
|
export declare class App extends UniffiAbstractObject implements AppInterface {
|
|
1481
|
-
readonly [uniffiTypeNameSymbol]
|
|
1517
|
+
readonly [uniffiTypeNameSymbol] = "App";
|
|
1482
1518
|
readonly [destructorGuardSymbol]: UniffiRustArcPtr;
|
|
1483
1519
|
readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
|
|
1484
1520
|
/**
|
|
@@ -1671,7 +1707,7 @@ export type BidiStreamHandlerInterface = {
|
|
|
1671
1707
|
* Allows sending and receiving messages concurrently.
|
|
1672
1708
|
*/
|
|
1673
1709
|
export declare class BidiStreamHandler extends UniffiAbstractObject implements BidiStreamHandlerInterface {
|
|
1674
|
-
readonly [uniffiTypeNameSymbol]
|
|
1710
|
+
readonly [uniffiTypeNameSymbol] = "BidiStreamHandler";
|
|
1675
1711
|
readonly [destructorGuardSymbol]: UniffiRustArcPtr;
|
|
1676
1712
|
readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
|
|
1677
1713
|
/**
|
|
@@ -1806,7 +1842,7 @@ export type ChannelInterface = {
|
|
|
1806
1842
|
* Each RPC call creates a new session which is closed after the RPC completes.
|
|
1807
1843
|
*/
|
|
1808
1844
|
export declare class Channel extends UniffiAbstractObject implements ChannelInterface {
|
|
1809
|
-
readonly [uniffiTypeNameSymbol]
|
|
1845
|
+
readonly [uniffiTypeNameSymbol] = "Channel";
|
|
1810
1846
|
readonly [destructorGuardSymbol]: UniffiRustArcPtr;
|
|
1811
1847
|
readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
|
|
1812
1848
|
/**
|
|
@@ -2015,7 +2051,7 @@ export type CompletionHandleInterface = {
|
|
|
2015
2051
|
* ```
|
|
2016
2052
|
*/
|
|
2017
2053
|
export declare class CompletionHandle extends UniffiAbstractObject implements CompletionHandleInterface {
|
|
2018
|
-
readonly [uniffiTypeNameSymbol]
|
|
2054
|
+
readonly [uniffiTypeNameSymbol] = "CompletionHandle";
|
|
2019
2055
|
readonly [destructorGuardSymbol]: UniffiRustArcPtr;
|
|
2020
2056
|
readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
|
|
2021
2057
|
/**
|
|
@@ -2120,7 +2156,7 @@ export type ContextInterface = {
|
|
|
2120
2156
|
* - Message routing details
|
|
2121
2157
|
*/
|
|
2122
2158
|
export declare class Context extends UniffiAbstractObject implements ContextInterface {
|
|
2123
|
-
readonly [uniffiTypeNameSymbol]
|
|
2159
|
+
readonly [uniffiTypeNameSymbol] = "Context";
|
|
2124
2160
|
readonly [destructorGuardSymbol]: UniffiRustArcPtr;
|
|
2125
2161
|
readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
|
|
2126
2162
|
/**
|
|
@@ -2159,7 +2195,7 @@ export type NameInterface = {
|
|
|
2159
2195
|
* Name type for SLIM (Secure Low-Latency Interactive Messaging)
|
|
2160
2196
|
*/
|
|
2161
2197
|
export declare class Name extends UniffiAbstractObject implements NameInterface {
|
|
2162
|
-
readonly [uniffiTypeNameSymbol]
|
|
2198
|
+
readonly [uniffiTypeNameSymbol] = "Name";
|
|
2163
2199
|
readonly [destructorGuardSymbol]: UniffiRustArcPtr;
|
|
2164
2200
|
readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
|
|
2165
2201
|
/**
|
|
@@ -2205,7 +2241,7 @@ export type RequestStreamInterface = {
|
|
|
2205
2241
|
* suitable for UniFFI callback traits.
|
|
2206
2242
|
*/
|
|
2207
2243
|
export declare class RequestStream extends UniffiAbstractObject implements RequestStreamInterface {
|
|
2208
|
-
readonly [uniffiTypeNameSymbol]
|
|
2244
|
+
readonly [uniffiTypeNameSymbol] = "RequestStream";
|
|
2209
2245
|
readonly [destructorGuardSymbol]: UniffiRustArcPtr;
|
|
2210
2246
|
readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
|
|
2211
2247
|
/**
|
|
@@ -2251,7 +2287,7 @@ export type RequestStreamWriterInterface = {
|
|
|
2251
2287
|
* Allows sending multiple request messages and getting a final response.
|
|
2252
2288
|
*/
|
|
2253
2289
|
export declare class RequestStreamWriter extends UniffiAbstractObject implements RequestStreamWriterInterface {
|
|
2254
|
-
readonly [uniffiTypeNameSymbol]
|
|
2290
|
+
readonly [uniffiTypeNameSymbol] = "RequestStreamWriter";
|
|
2255
2291
|
readonly [destructorGuardSymbol]: UniffiRustArcPtr;
|
|
2256
2292
|
readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
|
|
2257
2293
|
/**
|
|
@@ -2333,7 +2369,7 @@ export type ResponseSinkInterface = {
|
|
|
2333
2369
|
* suitable for UniFFI callback traits.
|
|
2334
2370
|
*/
|
|
2335
2371
|
export declare class ResponseSink extends UniffiAbstractObject implements ResponseSinkInterface {
|
|
2336
|
-
readonly [uniffiTypeNameSymbol]
|
|
2372
|
+
readonly [uniffiTypeNameSymbol] = "ResponseSink";
|
|
2337
2373
|
readonly [destructorGuardSymbol]: UniffiRustArcPtr;
|
|
2338
2374
|
readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
|
|
2339
2375
|
/**
|
|
@@ -2409,7 +2445,7 @@ export type ResponseStreamReaderInterface = {
|
|
|
2409
2445
|
* Allows pulling messages from a server response stream one at a time.
|
|
2410
2446
|
*/
|
|
2411
2447
|
export declare class ResponseStreamReader extends UniffiAbstractObject implements ResponseStreamReaderInterface {
|
|
2412
|
-
readonly [uniffiTypeNameSymbol]
|
|
2448
|
+
readonly [uniffiTypeNameSymbol] = "ResponseStreamReader";
|
|
2413
2449
|
readonly [destructorGuardSymbol]: UniffiRustArcPtr;
|
|
2414
2450
|
readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
|
|
2415
2451
|
/**
|
|
@@ -2538,7 +2574,7 @@ export type ServerInterface = {
|
|
|
2538
2574
|
* ```
|
|
2539
2575
|
*/
|
|
2540
2576
|
export declare class Server extends UniffiAbstractObject implements ServerInterface {
|
|
2541
|
-
readonly [uniffiTypeNameSymbol]
|
|
2577
|
+
readonly [uniffiTypeNameSymbol] = "Server";
|
|
2542
2578
|
readonly [destructorGuardSymbol]: UniffiRustArcPtr;
|
|
2543
2579
|
readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
|
|
2544
2580
|
/**
|
|
@@ -2792,7 +2828,7 @@ export type ServiceInterface = {
|
|
|
2792
2828
|
* Service wrapper for uniffi bindings
|
|
2793
2829
|
*/
|
|
2794
2830
|
export declare class Service extends UniffiAbstractObject implements ServiceInterface {
|
|
2795
|
-
readonly [uniffiTypeNameSymbol]
|
|
2831
|
+
readonly [uniffiTypeNameSymbol] = "Service";
|
|
2796
2832
|
readonly [destructorGuardSymbol]: UniffiRustArcPtr;
|
|
2797
2833
|
readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
|
|
2798
2834
|
/**
|
|
@@ -3152,7 +3188,7 @@ export type SessionInterface = {
|
|
|
3152
3188
|
* Provides both synchronous (blocking) and asynchronous methods for FFI compatibility.
|
|
3153
3189
|
*/
|
|
3154
3190
|
export declare class Session extends UniffiAbstractObject implements SessionInterface {
|
|
3155
|
-
readonly [uniffiTypeNameSymbol]
|
|
3191
|
+
readonly [uniffiTypeNameSymbol] = "Session";
|
|
3156
3192
|
readonly [destructorGuardSymbol]: UniffiRustArcPtr;
|
|
3157
3193
|
readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
|
|
3158
3194
|
/**
|
|
@@ -3375,7 +3411,7 @@ export type StreamStreamHandlerInterface = {
|
|
|
3375
3411
|
* The handler receives multiple requests via the stream and sends multiple responses via the sink.
|
|
3376
3412
|
*/
|
|
3377
3413
|
export declare class StreamStreamHandler extends UniffiAbstractObject implements StreamStreamHandlerInterface {
|
|
3378
|
-
readonly [uniffiTypeNameSymbol]
|
|
3414
|
+
readonly [uniffiTypeNameSymbol] = "StreamStreamHandler";
|
|
3379
3415
|
readonly [destructorGuardSymbol]: UniffiRustArcPtr;
|
|
3380
3416
|
readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
|
|
3381
3417
|
/**
|
|
@@ -3422,7 +3458,7 @@ export type StreamUnaryHandlerInterface = {
|
|
|
3422
3458
|
* The handler receives multiple requests via the stream and returns a single response.
|
|
3423
3459
|
*/
|
|
3424
3460
|
export declare class StreamUnaryHandler extends UniffiAbstractObject implements StreamUnaryHandlerInterface {
|
|
3425
|
-
readonly [uniffiTypeNameSymbol]
|
|
3461
|
+
readonly [uniffiTypeNameSymbol] = "StreamUnaryHandler";
|
|
3426
3462
|
readonly [destructorGuardSymbol]: UniffiRustArcPtr;
|
|
3427
3463
|
readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
|
|
3428
3464
|
/**
|
|
@@ -3469,7 +3505,7 @@ export type UnaryStreamHandlerInterface = {
|
|
|
3469
3505
|
* The handler receives a single request and sends multiple responses via the sink.
|
|
3470
3506
|
*/
|
|
3471
3507
|
export declare class UnaryStreamHandler extends UniffiAbstractObject implements UnaryStreamHandlerInterface {
|
|
3472
|
-
readonly [uniffiTypeNameSymbol]
|
|
3508
|
+
readonly [uniffiTypeNameSymbol] = "UnaryStreamHandler";
|
|
3473
3509
|
readonly [destructorGuardSymbol]: UniffiRustArcPtr;
|
|
3474
3510
|
readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
|
|
3475
3511
|
/**
|
|
@@ -3516,7 +3552,7 @@ export type UnaryUnaryHandlerInterface = {
|
|
|
3516
3552
|
* The handler receives a single request and returns a single response.
|
|
3517
3553
|
*/
|
|
3518
3554
|
export declare class UnaryUnaryHandler extends UniffiAbstractObject implements UnaryUnaryHandlerInterface {
|
|
3519
|
-
readonly [uniffiTypeNameSymbol]
|
|
3555
|
+
readonly [uniffiTypeNameSymbol] = "UnaryUnaryHandler";
|
|
3520
3556
|
readonly [destructorGuardSymbol]: UniffiRustArcPtr;
|
|
3521
3557
|
readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
|
|
3522
3558
|
/**
|
package/slim-bindings-sys.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ export declare const stringConverter: {
|
|
|
13
13
|
bytesToString: (ab: UniffiByteArray) => string;
|
|
14
14
|
stringByteLength: (s: string) => number;
|
|
15
15
|
};
|
|
16
|
-
export declare const FfiConverterString:
|
|
16
|
+
export declare const FfiConverterString: import("uniffi-bindgen-react-native").FfiConverter<UniffiByteArray, string>;
|
|
17
17
|
export type UniffiRustBufferStruct = {
|
|
18
18
|
capacity: bigint;
|
|
19
19
|
len: bigint;
|
|
@@ -38,8 +38,8 @@ export declare class UniffiRustBufferValue {
|
|
|
38
38
|
static allocateWithBytes(bytes: Uint8Array): UniffiRustBufferValue;
|
|
39
39
|
static allocateEmpty(): UniffiRustBufferValue;
|
|
40
40
|
toStruct(): UniffiRustBufferStruct;
|
|
41
|
-
toUint8Array(): Uint8Array<
|
|
42
|
-
consumeIntoUint8Array(): Uint8Array<
|
|
41
|
+
toUint8Array(): Uint8Array<ArrayBuffer>;
|
|
42
|
+
consumeIntoUint8Array(): Uint8Array<ArrayBuffer>;
|
|
43
43
|
destroy(): void;
|
|
44
44
|
}
|
|
45
45
|
export type UniffiRustCallStatusStruct = {
|