@slatedb/uniffi 0.12.0
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/README.md +211 -0
- package/index.d.ts +1 -0
- package/index.js +7 -0
- package/package.json +47 -0
- package/prebuilds/darwin-arm64/libslatedb_uniffi.dylib +0 -0
- package/prebuilds/darwin-x64/libslatedb_uniffi.dylib +0 -0
- package/prebuilds/linux-arm64-gnu/libslatedb_uniffi.so +0 -0
- package/prebuilds/linux-x64-gnu/libslatedb_uniffi.so +0 -0
- package/prebuilds/win32-arm64/slatedb_uniffi.dll +0 -0
- package/prebuilds/win32-x64/slatedb_uniffi.dll +0 -0
- package/runtime/async-rust-call.d.ts +86 -0
- package/runtime/async-rust-call.js +217 -0
- package/runtime/callbacks.d.ts +122 -0
- package/runtime/callbacks.js +392 -0
- package/runtime/errors.d.ts +120 -0
- package/runtime/errors.js +274 -0
- package/runtime/ffi-converters.d.ts +100 -0
- package/runtime/ffi-converters.js +758 -0
- package/runtime/ffi-types.d.ts +120 -0
- package/runtime/ffi-types.js +456 -0
- package/runtime/handle-map.d.ts +35 -0
- package/runtime/handle-map.js +137 -0
- package/runtime/objects.d.ts +68 -0
- package/runtime/objects.js +469 -0
- package/runtime/rust-call.d.ts +77 -0
- package/runtime/rust-call.js +233 -0
- package/slatedb-ffi.d.ts +732 -0
- package/slatedb-ffi.js +11480 -0
- package/slatedb.d.ts +1393 -0
- package/slatedb.js +5873 -0
package/slatedb-ffi.d.ts
ADDED
|
@@ -0,0 +1,732 @@
|
|
|
1
|
+
export interface FfiMetadata {
|
|
2
|
+
namespace: string;
|
|
3
|
+
cdylibName: string;
|
|
4
|
+
stagedLibraryFileName: string;
|
|
5
|
+
stagedLibraryPackageRelativePath: string;
|
|
6
|
+
bundledPrebuilds: boolean;
|
|
7
|
+
manualLoad: boolean;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export interface FfiBindings {
|
|
11
|
+
libraryPath: string;
|
|
12
|
+
packageRelativePath: string | null;
|
|
13
|
+
library: unknown;
|
|
14
|
+
ffiTypes: Readonly<Record<string, unknown>>;
|
|
15
|
+
ffiCallbacks: Readonly<Record<string, unknown>>;
|
|
16
|
+
ffiStructs: Readonly<Record<string, unknown>>;
|
|
17
|
+
ffiFunctions: Readonly<Record<string, (...args: any[]) => any>>;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export interface FfiIntegrity {
|
|
21
|
+
contractVersionFunction: string;
|
|
22
|
+
expectedContractVersion: number;
|
|
23
|
+
checksums: Readonly<Record<string, number>>;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export interface FfiRuntimeHooks {
|
|
27
|
+
onLoad?(bindings: Readonly<FfiBindings>): void;
|
|
28
|
+
onUnload?(bindings: Readonly<FfiBindings>): void;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export declare const ffiMetadata: Readonly<FfiMetadata>;
|
|
32
|
+
export declare const ffiIntegrity: Readonly<FfiIntegrity>;
|
|
33
|
+
export declare function configureRuntimeHooks(hooks?: FfiRuntimeHooks | null): void;
|
|
34
|
+
export declare function load(libraryPath?: string | null): Readonly<FfiBindings>;
|
|
35
|
+
export declare function unload(): boolean;
|
|
36
|
+
export declare function isLoaded(): boolean;
|
|
37
|
+
export declare function getFfiBindings(): Readonly<FfiBindings>;
|
|
38
|
+
export declare function getFfiTypes(): Readonly<Record<string, unknown>>;
|
|
39
|
+
export declare function getContractVersion(bindings?: Readonly<FfiBindings>): number;
|
|
40
|
+
export declare function validateContractVersion(bindings?: Readonly<FfiBindings>): number;
|
|
41
|
+
export declare function getChecksums(
|
|
42
|
+
bindings?: Readonly<FfiBindings>,
|
|
43
|
+
): Readonly<Record<string, number>>;
|
|
44
|
+
export declare function validateChecksums(
|
|
45
|
+
bindings?: Readonly<FfiBindings>,
|
|
46
|
+
): Readonly<Record<string, number>>;
|
|
47
|
+
export declare const ffiFunctions: Readonly<Record<string, (...args: any[]) => any>>;
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
export declare function uniffi_slatedb_uniffi_fn_clone_dbbuilder(...args: any[]): any;
|
|
51
|
+
|
|
52
|
+
export declare function uniffi_slatedb_uniffi_fn_free_dbbuilder(...args: any[]): any;
|
|
53
|
+
|
|
54
|
+
export declare function uniffi_slatedb_uniffi_fn_constructor_dbbuilder_new(...args: any[]): any;
|
|
55
|
+
|
|
56
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbbuilder_build(...args: any[]): any;
|
|
57
|
+
|
|
58
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbbuilder_with_db_cache_disabled(...args: any[]): any;
|
|
59
|
+
|
|
60
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbbuilder_with_merge_operator(...args: any[]): any;
|
|
61
|
+
|
|
62
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbbuilder_with_metrics_recorder(...args: any[]): any;
|
|
63
|
+
|
|
64
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbbuilder_with_seed(...args: any[]): any;
|
|
65
|
+
|
|
66
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbbuilder_with_settings(...args: any[]): any;
|
|
67
|
+
|
|
68
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbbuilder_with_sst_block_size(...args: any[]): any;
|
|
69
|
+
|
|
70
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbbuilder_with_wal_object_store(...args: any[]): any;
|
|
71
|
+
|
|
72
|
+
export declare function uniffi_slatedb_uniffi_fn_clone_dbreaderbuilder(...args: any[]): any;
|
|
73
|
+
|
|
74
|
+
export declare function uniffi_slatedb_uniffi_fn_free_dbreaderbuilder(...args: any[]): any;
|
|
75
|
+
|
|
76
|
+
export declare function uniffi_slatedb_uniffi_fn_constructor_dbreaderbuilder_new(...args: any[]): any;
|
|
77
|
+
|
|
78
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbreaderbuilder_build(...args: any[]): any;
|
|
79
|
+
|
|
80
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbreaderbuilder_with_checkpoint_id(...args: any[]): any;
|
|
81
|
+
|
|
82
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbreaderbuilder_with_merge_operator(...args: any[]): any;
|
|
83
|
+
|
|
84
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbreaderbuilder_with_metrics_recorder(...args: any[]): any;
|
|
85
|
+
|
|
86
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbreaderbuilder_with_options(...args: any[]): any;
|
|
87
|
+
|
|
88
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbreaderbuilder_with_wal_object_store(...args: any[]): any;
|
|
89
|
+
|
|
90
|
+
export declare function uniffi_slatedb_uniffi_fn_clone_db(...args: any[]): any;
|
|
91
|
+
|
|
92
|
+
export declare function uniffi_slatedb_uniffi_fn_free_db(...args: any[]): any;
|
|
93
|
+
|
|
94
|
+
export declare function uniffi_slatedb_uniffi_fn_method_db_begin(...args: any[]): any;
|
|
95
|
+
|
|
96
|
+
export declare function uniffi_slatedb_uniffi_fn_method_db_delete(...args: any[]): any;
|
|
97
|
+
|
|
98
|
+
export declare function uniffi_slatedb_uniffi_fn_method_db_delete_with_options(...args: any[]): any;
|
|
99
|
+
|
|
100
|
+
export declare function uniffi_slatedb_uniffi_fn_method_db_flush(...args: any[]): any;
|
|
101
|
+
|
|
102
|
+
export declare function uniffi_slatedb_uniffi_fn_method_db_flush_with_options(...args: any[]): any;
|
|
103
|
+
|
|
104
|
+
export declare function uniffi_slatedb_uniffi_fn_method_db_get(...args: any[]): any;
|
|
105
|
+
|
|
106
|
+
export declare function uniffi_slatedb_uniffi_fn_method_db_get_key_value(...args: any[]): any;
|
|
107
|
+
|
|
108
|
+
export declare function uniffi_slatedb_uniffi_fn_method_db_get_key_value_with_options(...args: any[]): any;
|
|
109
|
+
|
|
110
|
+
export declare function uniffi_slatedb_uniffi_fn_method_db_get_with_options(...args: any[]): any;
|
|
111
|
+
|
|
112
|
+
export declare function uniffi_slatedb_uniffi_fn_method_db_merge(...args: any[]): any;
|
|
113
|
+
|
|
114
|
+
export declare function uniffi_slatedb_uniffi_fn_method_db_merge_with_options(...args: any[]): any;
|
|
115
|
+
|
|
116
|
+
export declare function uniffi_slatedb_uniffi_fn_method_db_put(...args: any[]): any;
|
|
117
|
+
|
|
118
|
+
export declare function uniffi_slatedb_uniffi_fn_method_db_put_with_options(...args: any[]): any;
|
|
119
|
+
|
|
120
|
+
export declare function uniffi_slatedb_uniffi_fn_method_db_scan(...args: any[]): any;
|
|
121
|
+
|
|
122
|
+
export declare function uniffi_slatedb_uniffi_fn_method_db_scan_prefix(...args: any[]): any;
|
|
123
|
+
|
|
124
|
+
export declare function uniffi_slatedb_uniffi_fn_method_db_scan_prefix_with_options(...args: any[]): any;
|
|
125
|
+
|
|
126
|
+
export declare function uniffi_slatedb_uniffi_fn_method_db_scan_with_options(...args: any[]): any;
|
|
127
|
+
|
|
128
|
+
export declare function uniffi_slatedb_uniffi_fn_method_db_shutdown(...args: any[]): any;
|
|
129
|
+
|
|
130
|
+
export declare function uniffi_slatedb_uniffi_fn_method_db_snapshot(...args: any[]): any;
|
|
131
|
+
|
|
132
|
+
export declare function uniffi_slatedb_uniffi_fn_method_db_status(...args: any[]): any;
|
|
133
|
+
|
|
134
|
+
export declare function uniffi_slatedb_uniffi_fn_method_db_write(...args: any[]): any;
|
|
135
|
+
|
|
136
|
+
export declare function uniffi_slatedb_uniffi_fn_method_db_write_with_options(...args: any[]): any;
|
|
137
|
+
|
|
138
|
+
export declare function uniffi_slatedb_uniffi_fn_clone_dbreader(...args: any[]): any;
|
|
139
|
+
|
|
140
|
+
export declare function uniffi_slatedb_uniffi_fn_free_dbreader(...args: any[]): any;
|
|
141
|
+
|
|
142
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbreader_get(...args: any[]): any;
|
|
143
|
+
|
|
144
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbreader_get_with_options(...args: any[]): any;
|
|
145
|
+
|
|
146
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbreader_scan(...args: any[]): any;
|
|
147
|
+
|
|
148
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbreader_scan_prefix(...args: any[]): any;
|
|
149
|
+
|
|
150
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbreader_scan_prefix_with_options(...args: any[]): any;
|
|
151
|
+
|
|
152
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbreader_scan_with_options(...args: any[]): any;
|
|
153
|
+
|
|
154
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbreader_shutdown(...args: any[]): any;
|
|
155
|
+
|
|
156
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbreader_status(...args: any[]): any;
|
|
157
|
+
|
|
158
|
+
export declare function uniffi_slatedb_uniffi_fn_clone_dbsnapshot(...args: any[]): any;
|
|
159
|
+
|
|
160
|
+
export declare function uniffi_slatedb_uniffi_fn_free_dbsnapshot(...args: any[]): any;
|
|
161
|
+
|
|
162
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbsnapshot_get(...args: any[]): any;
|
|
163
|
+
|
|
164
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbsnapshot_get_key_value(...args: any[]): any;
|
|
165
|
+
|
|
166
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbsnapshot_get_key_value_with_options(...args: any[]): any;
|
|
167
|
+
|
|
168
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbsnapshot_get_with_options(...args: any[]): any;
|
|
169
|
+
|
|
170
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbsnapshot_scan(...args: any[]): any;
|
|
171
|
+
|
|
172
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbsnapshot_scan_prefix(...args: any[]): any;
|
|
173
|
+
|
|
174
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbsnapshot_scan_prefix_with_options(...args: any[]): any;
|
|
175
|
+
|
|
176
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbsnapshot_scan_with_options(...args: any[]): any;
|
|
177
|
+
|
|
178
|
+
export declare function uniffi_slatedb_uniffi_fn_clone_dbtransaction(...args: any[]): any;
|
|
179
|
+
|
|
180
|
+
export declare function uniffi_slatedb_uniffi_fn_free_dbtransaction(...args: any[]): any;
|
|
181
|
+
|
|
182
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbtransaction_commit(...args: any[]): any;
|
|
183
|
+
|
|
184
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbtransaction_commit_with_options(...args: any[]): any;
|
|
185
|
+
|
|
186
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbtransaction_delete(...args: any[]): any;
|
|
187
|
+
|
|
188
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbtransaction_get(...args: any[]): any;
|
|
189
|
+
|
|
190
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbtransaction_get_key_value(...args: any[]): any;
|
|
191
|
+
|
|
192
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbtransaction_get_key_value_with_options(...args: any[]): any;
|
|
193
|
+
|
|
194
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbtransaction_get_with_options(...args: any[]): any;
|
|
195
|
+
|
|
196
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbtransaction_id(...args: any[]): any;
|
|
197
|
+
|
|
198
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbtransaction_mark_read(...args: any[]): any;
|
|
199
|
+
|
|
200
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbtransaction_merge(...args: any[]): any;
|
|
201
|
+
|
|
202
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbtransaction_merge_with_options(...args: any[]): any;
|
|
203
|
+
|
|
204
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbtransaction_put(...args: any[]): any;
|
|
205
|
+
|
|
206
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbtransaction_put_with_options(...args: any[]): any;
|
|
207
|
+
|
|
208
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbtransaction_rollback(...args: any[]): any;
|
|
209
|
+
|
|
210
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbtransaction_scan(...args: any[]): any;
|
|
211
|
+
|
|
212
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbtransaction_scan_prefix(...args: any[]): any;
|
|
213
|
+
|
|
214
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbtransaction_scan_prefix_with_options(...args: any[]): any;
|
|
215
|
+
|
|
216
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbtransaction_scan_with_options(...args: any[]): any;
|
|
217
|
+
|
|
218
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbtransaction_seqnum(...args: any[]): any;
|
|
219
|
+
|
|
220
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbtransaction_unmark_write(...args: any[]): any;
|
|
221
|
+
|
|
222
|
+
export declare function uniffi_slatedb_uniffi_fn_clone_dbiterator(...args: any[]): any;
|
|
223
|
+
|
|
224
|
+
export declare function uniffi_slatedb_uniffi_fn_free_dbiterator(...args: any[]): any;
|
|
225
|
+
|
|
226
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbiterator_next(...args: any[]): any;
|
|
227
|
+
|
|
228
|
+
export declare function uniffi_slatedb_uniffi_fn_method_dbiterator_seek(...args: any[]): any;
|
|
229
|
+
|
|
230
|
+
export declare function uniffi_slatedb_uniffi_fn_clone_logcallback(...args: any[]): any;
|
|
231
|
+
|
|
232
|
+
export declare function uniffi_slatedb_uniffi_fn_free_logcallback(...args: any[]): any;
|
|
233
|
+
|
|
234
|
+
export declare function uniffi_slatedb_uniffi_fn_init_callback_vtable_logcallback(...args: any[]): any;
|
|
235
|
+
|
|
236
|
+
export declare function uniffi_slatedb_uniffi_fn_method_logcallback_log(...args: any[]): any;
|
|
237
|
+
|
|
238
|
+
export declare function uniffi_slatedb_uniffi_fn_clone_mergeoperator(...args: any[]): any;
|
|
239
|
+
|
|
240
|
+
export declare function uniffi_slatedb_uniffi_fn_free_mergeoperator(...args: any[]): any;
|
|
241
|
+
|
|
242
|
+
export declare function uniffi_slatedb_uniffi_fn_init_callback_vtable_mergeoperator(...args: any[]): any;
|
|
243
|
+
|
|
244
|
+
export declare function uniffi_slatedb_uniffi_fn_method_mergeoperator_merge(...args: any[]): any;
|
|
245
|
+
|
|
246
|
+
export declare function uniffi_slatedb_uniffi_fn_clone_counter(...args: any[]): any;
|
|
247
|
+
|
|
248
|
+
export declare function uniffi_slatedb_uniffi_fn_free_counter(...args: any[]): any;
|
|
249
|
+
|
|
250
|
+
export declare function uniffi_slatedb_uniffi_fn_init_callback_vtable_counter(...args: any[]): any;
|
|
251
|
+
|
|
252
|
+
export declare function uniffi_slatedb_uniffi_fn_method_counter_increment(...args: any[]): any;
|
|
253
|
+
|
|
254
|
+
export declare function uniffi_slatedb_uniffi_fn_clone_defaultmetricsrecorder(...args: any[]): any;
|
|
255
|
+
|
|
256
|
+
export declare function uniffi_slatedb_uniffi_fn_free_defaultmetricsrecorder(...args: any[]): any;
|
|
257
|
+
|
|
258
|
+
export declare function uniffi_slatedb_uniffi_fn_constructor_defaultmetricsrecorder_new(...args: any[]): any;
|
|
259
|
+
|
|
260
|
+
export declare function uniffi_slatedb_uniffi_fn_method_defaultmetricsrecorder_metric_by_name_and_labels(...args: any[]): any;
|
|
261
|
+
|
|
262
|
+
export declare function uniffi_slatedb_uniffi_fn_method_defaultmetricsrecorder_metrics_by_name(...args: any[]): any;
|
|
263
|
+
|
|
264
|
+
export declare function uniffi_slatedb_uniffi_fn_method_defaultmetricsrecorder_register_counter(...args: any[]): any;
|
|
265
|
+
|
|
266
|
+
export declare function uniffi_slatedb_uniffi_fn_method_defaultmetricsrecorder_register_gauge(...args: any[]): any;
|
|
267
|
+
|
|
268
|
+
export declare function uniffi_slatedb_uniffi_fn_method_defaultmetricsrecorder_register_histogram(...args: any[]): any;
|
|
269
|
+
|
|
270
|
+
export declare function uniffi_slatedb_uniffi_fn_method_defaultmetricsrecorder_register_up_down_counter(...args: any[]): any;
|
|
271
|
+
|
|
272
|
+
export declare function uniffi_slatedb_uniffi_fn_method_defaultmetricsrecorder_snapshot(...args: any[]): any;
|
|
273
|
+
|
|
274
|
+
export declare function uniffi_slatedb_uniffi_fn_clone_gauge(...args: any[]): any;
|
|
275
|
+
|
|
276
|
+
export declare function uniffi_slatedb_uniffi_fn_free_gauge(...args: any[]): any;
|
|
277
|
+
|
|
278
|
+
export declare function uniffi_slatedb_uniffi_fn_init_callback_vtable_gauge(...args: any[]): any;
|
|
279
|
+
|
|
280
|
+
export declare function uniffi_slatedb_uniffi_fn_method_gauge_set(...args: any[]): any;
|
|
281
|
+
|
|
282
|
+
export declare function uniffi_slatedb_uniffi_fn_clone_histogram(...args: any[]): any;
|
|
283
|
+
|
|
284
|
+
export declare function uniffi_slatedb_uniffi_fn_free_histogram(...args: any[]): any;
|
|
285
|
+
|
|
286
|
+
export declare function uniffi_slatedb_uniffi_fn_init_callback_vtable_histogram(...args: any[]): any;
|
|
287
|
+
|
|
288
|
+
export declare function uniffi_slatedb_uniffi_fn_method_histogram_record(...args: any[]): any;
|
|
289
|
+
|
|
290
|
+
export declare function uniffi_slatedb_uniffi_fn_clone_metricsrecorder(...args: any[]): any;
|
|
291
|
+
|
|
292
|
+
export declare function uniffi_slatedb_uniffi_fn_free_metricsrecorder(...args: any[]): any;
|
|
293
|
+
|
|
294
|
+
export declare function uniffi_slatedb_uniffi_fn_init_callback_vtable_metricsrecorder(...args: any[]): any;
|
|
295
|
+
|
|
296
|
+
export declare function uniffi_slatedb_uniffi_fn_method_metricsrecorder_register_counter(...args: any[]): any;
|
|
297
|
+
|
|
298
|
+
export declare function uniffi_slatedb_uniffi_fn_method_metricsrecorder_register_gauge(...args: any[]): any;
|
|
299
|
+
|
|
300
|
+
export declare function uniffi_slatedb_uniffi_fn_method_metricsrecorder_register_up_down_counter(...args: any[]): any;
|
|
301
|
+
|
|
302
|
+
export declare function uniffi_slatedb_uniffi_fn_method_metricsrecorder_register_histogram(...args: any[]): any;
|
|
303
|
+
|
|
304
|
+
export declare function uniffi_slatedb_uniffi_fn_clone_updowncounter(...args: any[]): any;
|
|
305
|
+
|
|
306
|
+
export declare function uniffi_slatedb_uniffi_fn_free_updowncounter(...args: any[]): any;
|
|
307
|
+
|
|
308
|
+
export declare function uniffi_slatedb_uniffi_fn_init_callback_vtable_updowncounter(...args: any[]): any;
|
|
309
|
+
|
|
310
|
+
export declare function uniffi_slatedb_uniffi_fn_method_updowncounter_increment(...args: any[]): any;
|
|
311
|
+
|
|
312
|
+
export declare function uniffi_slatedb_uniffi_fn_clone_objectstore(...args: any[]): any;
|
|
313
|
+
|
|
314
|
+
export declare function uniffi_slatedb_uniffi_fn_free_objectstore(...args: any[]): any;
|
|
315
|
+
|
|
316
|
+
export declare function uniffi_slatedb_uniffi_fn_constructor_objectstore_from_env(...args: any[]): any;
|
|
317
|
+
|
|
318
|
+
export declare function uniffi_slatedb_uniffi_fn_constructor_objectstore_resolve(...args: any[]): any;
|
|
319
|
+
|
|
320
|
+
export declare function uniffi_slatedb_uniffi_fn_clone_settings(...args: any[]): any;
|
|
321
|
+
|
|
322
|
+
export declare function uniffi_slatedb_uniffi_fn_free_settings(...args: any[]): any;
|
|
323
|
+
|
|
324
|
+
export declare function uniffi_slatedb_uniffi_fn_constructor_settings_default(...args: any[]): any;
|
|
325
|
+
|
|
326
|
+
export declare function uniffi_slatedb_uniffi_fn_constructor_settings_from_env(...args: any[]): any;
|
|
327
|
+
|
|
328
|
+
export declare function uniffi_slatedb_uniffi_fn_constructor_settings_from_env_with_default(...args: any[]): any;
|
|
329
|
+
|
|
330
|
+
export declare function uniffi_slatedb_uniffi_fn_constructor_settings_from_file(...args: any[]): any;
|
|
331
|
+
|
|
332
|
+
export declare function uniffi_slatedb_uniffi_fn_constructor_settings_from_json_string(...args: any[]): any;
|
|
333
|
+
|
|
334
|
+
export declare function uniffi_slatedb_uniffi_fn_constructor_settings_load(...args: any[]): any;
|
|
335
|
+
|
|
336
|
+
export declare function uniffi_slatedb_uniffi_fn_method_settings_set(...args: any[]): any;
|
|
337
|
+
|
|
338
|
+
export declare function uniffi_slatedb_uniffi_fn_method_settings_to_json_string(...args: any[]): any;
|
|
339
|
+
|
|
340
|
+
export declare function uniffi_slatedb_uniffi_fn_clone_walfile(...args: any[]): any;
|
|
341
|
+
|
|
342
|
+
export declare function uniffi_slatedb_uniffi_fn_free_walfile(...args: any[]): any;
|
|
343
|
+
|
|
344
|
+
export declare function uniffi_slatedb_uniffi_fn_method_walfile_id(...args: any[]): any;
|
|
345
|
+
|
|
346
|
+
export declare function uniffi_slatedb_uniffi_fn_method_walfile_iterator(...args: any[]): any;
|
|
347
|
+
|
|
348
|
+
export declare function uniffi_slatedb_uniffi_fn_method_walfile_metadata(...args: any[]): any;
|
|
349
|
+
|
|
350
|
+
export declare function uniffi_slatedb_uniffi_fn_method_walfile_next_file(...args: any[]): any;
|
|
351
|
+
|
|
352
|
+
export declare function uniffi_slatedb_uniffi_fn_method_walfile_next_id(...args: any[]): any;
|
|
353
|
+
|
|
354
|
+
export declare function uniffi_slatedb_uniffi_fn_clone_walfileiterator(...args: any[]): any;
|
|
355
|
+
|
|
356
|
+
export declare function uniffi_slatedb_uniffi_fn_free_walfileiterator(...args: any[]): any;
|
|
357
|
+
|
|
358
|
+
export declare function uniffi_slatedb_uniffi_fn_method_walfileiterator_next(...args: any[]): any;
|
|
359
|
+
|
|
360
|
+
export declare function uniffi_slatedb_uniffi_fn_clone_walreader(...args: any[]): any;
|
|
361
|
+
|
|
362
|
+
export declare function uniffi_slatedb_uniffi_fn_free_walreader(...args: any[]): any;
|
|
363
|
+
|
|
364
|
+
export declare function uniffi_slatedb_uniffi_fn_constructor_walreader_new(...args: any[]): any;
|
|
365
|
+
|
|
366
|
+
export declare function uniffi_slatedb_uniffi_fn_method_walreader_get(...args: any[]): any;
|
|
367
|
+
|
|
368
|
+
export declare function uniffi_slatedb_uniffi_fn_method_walreader_list(...args: any[]): any;
|
|
369
|
+
|
|
370
|
+
export declare function uniffi_slatedb_uniffi_fn_clone_writebatch(...args: any[]): any;
|
|
371
|
+
|
|
372
|
+
export declare function uniffi_slatedb_uniffi_fn_free_writebatch(...args: any[]): any;
|
|
373
|
+
|
|
374
|
+
export declare function uniffi_slatedb_uniffi_fn_constructor_writebatch_new(...args: any[]): any;
|
|
375
|
+
|
|
376
|
+
export declare function uniffi_slatedb_uniffi_fn_method_writebatch_delete(...args: any[]): any;
|
|
377
|
+
|
|
378
|
+
export declare function uniffi_slatedb_uniffi_fn_method_writebatch_merge(...args: any[]): any;
|
|
379
|
+
|
|
380
|
+
export declare function uniffi_slatedb_uniffi_fn_method_writebatch_merge_with_options(...args: any[]): any;
|
|
381
|
+
|
|
382
|
+
export declare function uniffi_slatedb_uniffi_fn_method_writebatch_put(...args: any[]): any;
|
|
383
|
+
|
|
384
|
+
export declare function uniffi_slatedb_uniffi_fn_method_writebatch_put_with_options(...args: any[]): any;
|
|
385
|
+
|
|
386
|
+
export declare function uniffi_slatedb_uniffi_fn_func_init_logging(...args: any[]): any;
|
|
387
|
+
|
|
388
|
+
export declare function ffi_slatedb_uniffi_rustbuffer_alloc(...args: any[]): any;
|
|
389
|
+
|
|
390
|
+
export declare function ffi_slatedb_uniffi_rustbuffer_from_bytes(...args: any[]): any;
|
|
391
|
+
|
|
392
|
+
export declare function ffi_slatedb_uniffi_rustbuffer_free(...args: any[]): any;
|
|
393
|
+
|
|
394
|
+
export declare function ffi_slatedb_uniffi_rustbuffer_reserve(...args: any[]): any;
|
|
395
|
+
|
|
396
|
+
export declare function ffi_slatedb_uniffi_rust_future_poll_u8(...args: any[]): any;
|
|
397
|
+
|
|
398
|
+
export declare function ffi_slatedb_uniffi_rust_future_cancel_u8(...args: any[]): any;
|
|
399
|
+
|
|
400
|
+
export declare function ffi_slatedb_uniffi_rust_future_free_u8(...args: any[]): any;
|
|
401
|
+
|
|
402
|
+
export declare function ffi_slatedb_uniffi_rust_future_complete_u8(...args: any[]): any;
|
|
403
|
+
|
|
404
|
+
export declare function ffi_slatedb_uniffi_rust_future_poll_i8(...args: any[]): any;
|
|
405
|
+
|
|
406
|
+
export declare function ffi_slatedb_uniffi_rust_future_cancel_i8(...args: any[]): any;
|
|
407
|
+
|
|
408
|
+
export declare function ffi_slatedb_uniffi_rust_future_free_i8(...args: any[]): any;
|
|
409
|
+
|
|
410
|
+
export declare function ffi_slatedb_uniffi_rust_future_complete_i8(...args: any[]): any;
|
|
411
|
+
|
|
412
|
+
export declare function ffi_slatedb_uniffi_rust_future_poll_u16(...args: any[]): any;
|
|
413
|
+
|
|
414
|
+
export declare function ffi_slatedb_uniffi_rust_future_cancel_u16(...args: any[]): any;
|
|
415
|
+
|
|
416
|
+
export declare function ffi_slatedb_uniffi_rust_future_free_u16(...args: any[]): any;
|
|
417
|
+
|
|
418
|
+
export declare function ffi_slatedb_uniffi_rust_future_complete_u16(...args: any[]): any;
|
|
419
|
+
|
|
420
|
+
export declare function ffi_slatedb_uniffi_rust_future_poll_i16(...args: any[]): any;
|
|
421
|
+
|
|
422
|
+
export declare function ffi_slatedb_uniffi_rust_future_cancel_i16(...args: any[]): any;
|
|
423
|
+
|
|
424
|
+
export declare function ffi_slatedb_uniffi_rust_future_free_i16(...args: any[]): any;
|
|
425
|
+
|
|
426
|
+
export declare function ffi_slatedb_uniffi_rust_future_complete_i16(...args: any[]): any;
|
|
427
|
+
|
|
428
|
+
export declare function ffi_slatedb_uniffi_rust_future_poll_u32(...args: any[]): any;
|
|
429
|
+
|
|
430
|
+
export declare function ffi_slatedb_uniffi_rust_future_cancel_u32(...args: any[]): any;
|
|
431
|
+
|
|
432
|
+
export declare function ffi_slatedb_uniffi_rust_future_free_u32(...args: any[]): any;
|
|
433
|
+
|
|
434
|
+
export declare function ffi_slatedb_uniffi_rust_future_complete_u32(...args: any[]): any;
|
|
435
|
+
|
|
436
|
+
export declare function ffi_slatedb_uniffi_rust_future_poll_i32(...args: any[]): any;
|
|
437
|
+
|
|
438
|
+
export declare function ffi_slatedb_uniffi_rust_future_cancel_i32(...args: any[]): any;
|
|
439
|
+
|
|
440
|
+
export declare function ffi_slatedb_uniffi_rust_future_free_i32(...args: any[]): any;
|
|
441
|
+
|
|
442
|
+
export declare function ffi_slatedb_uniffi_rust_future_complete_i32(...args: any[]): any;
|
|
443
|
+
|
|
444
|
+
export declare function ffi_slatedb_uniffi_rust_future_poll_u64(...args: any[]): any;
|
|
445
|
+
|
|
446
|
+
export declare function ffi_slatedb_uniffi_rust_future_cancel_u64(...args: any[]): any;
|
|
447
|
+
|
|
448
|
+
export declare function ffi_slatedb_uniffi_rust_future_free_u64(...args: any[]): any;
|
|
449
|
+
|
|
450
|
+
export declare function ffi_slatedb_uniffi_rust_future_complete_u64(...args: any[]): any;
|
|
451
|
+
|
|
452
|
+
export declare function ffi_slatedb_uniffi_rust_future_poll_i64(...args: any[]): any;
|
|
453
|
+
|
|
454
|
+
export declare function ffi_slatedb_uniffi_rust_future_cancel_i64(...args: any[]): any;
|
|
455
|
+
|
|
456
|
+
export declare function ffi_slatedb_uniffi_rust_future_free_i64(...args: any[]): any;
|
|
457
|
+
|
|
458
|
+
export declare function ffi_slatedb_uniffi_rust_future_complete_i64(...args: any[]): any;
|
|
459
|
+
|
|
460
|
+
export declare function ffi_slatedb_uniffi_rust_future_poll_f32(...args: any[]): any;
|
|
461
|
+
|
|
462
|
+
export declare function ffi_slatedb_uniffi_rust_future_cancel_f32(...args: any[]): any;
|
|
463
|
+
|
|
464
|
+
export declare function ffi_slatedb_uniffi_rust_future_free_f32(...args: any[]): any;
|
|
465
|
+
|
|
466
|
+
export declare function ffi_slatedb_uniffi_rust_future_complete_f32(...args: any[]): any;
|
|
467
|
+
|
|
468
|
+
export declare function ffi_slatedb_uniffi_rust_future_poll_f64(...args: any[]): any;
|
|
469
|
+
|
|
470
|
+
export declare function ffi_slatedb_uniffi_rust_future_cancel_f64(...args: any[]): any;
|
|
471
|
+
|
|
472
|
+
export declare function ffi_slatedb_uniffi_rust_future_free_f64(...args: any[]): any;
|
|
473
|
+
|
|
474
|
+
export declare function ffi_slatedb_uniffi_rust_future_complete_f64(...args: any[]): any;
|
|
475
|
+
|
|
476
|
+
export declare function ffi_slatedb_uniffi_rust_future_poll_rust_buffer(...args: any[]): any;
|
|
477
|
+
|
|
478
|
+
export declare function ffi_slatedb_uniffi_rust_future_cancel_rust_buffer(...args: any[]): any;
|
|
479
|
+
|
|
480
|
+
export declare function ffi_slatedb_uniffi_rust_future_free_rust_buffer(...args: any[]): any;
|
|
481
|
+
|
|
482
|
+
export declare function ffi_slatedb_uniffi_rust_future_complete_rust_buffer(...args: any[]): any;
|
|
483
|
+
|
|
484
|
+
export declare function ffi_slatedb_uniffi_rust_future_poll_void(...args: any[]): any;
|
|
485
|
+
|
|
486
|
+
export declare function ffi_slatedb_uniffi_rust_future_cancel_void(...args: any[]): any;
|
|
487
|
+
|
|
488
|
+
export declare function ffi_slatedb_uniffi_rust_future_free_void(...args: any[]): any;
|
|
489
|
+
|
|
490
|
+
export declare function ffi_slatedb_uniffi_rust_future_complete_void(...args: any[]): any;
|
|
491
|
+
|
|
492
|
+
export declare function uniffi_slatedb_uniffi_checksum_func_init_logging(...args: any[]): any;
|
|
493
|
+
|
|
494
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbbuilder_build(...args: any[]): any;
|
|
495
|
+
|
|
496
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbbuilder_with_db_cache_disabled(...args: any[]): any;
|
|
497
|
+
|
|
498
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbbuilder_with_merge_operator(...args: any[]): any;
|
|
499
|
+
|
|
500
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbbuilder_with_metrics_recorder(...args: any[]): any;
|
|
501
|
+
|
|
502
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbbuilder_with_seed(...args: any[]): any;
|
|
503
|
+
|
|
504
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbbuilder_with_settings(...args: any[]): any;
|
|
505
|
+
|
|
506
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbbuilder_with_sst_block_size(...args: any[]): any;
|
|
507
|
+
|
|
508
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbbuilder_with_wal_object_store(...args: any[]): any;
|
|
509
|
+
|
|
510
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbreaderbuilder_build(...args: any[]): any;
|
|
511
|
+
|
|
512
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbreaderbuilder_with_checkpoint_id(...args: any[]): any;
|
|
513
|
+
|
|
514
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbreaderbuilder_with_merge_operator(...args: any[]): any;
|
|
515
|
+
|
|
516
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbreaderbuilder_with_metrics_recorder(...args: any[]): any;
|
|
517
|
+
|
|
518
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbreaderbuilder_with_options(...args: any[]): any;
|
|
519
|
+
|
|
520
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbreaderbuilder_with_wal_object_store(...args: any[]): any;
|
|
521
|
+
|
|
522
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_db_begin(...args: any[]): any;
|
|
523
|
+
|
|
524
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_db_delete(...args: any[]): any;
|
|
525
|
+
|
|
526
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_db_delete_with_options(...args: any[]): any;
|
|
527
|
+
|
|
528
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_db_flush(...args: any[]): any;
|
|
529
|
+
|
|
530
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_db_flush_with_options(...args: any[]): any;
|
|
531
|
+
|
|
532
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_db_get(...args: any[]): any;
|
|
533
|
+
|
|
534
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_db_get_key_value(...args: any[]): any;
|
|
535
|
+
|
|
536
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_db_get_key_value_with_options(...args: any[]): any;
|
|
537
|
+
|
|
538
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_db_get_with_options(...args: any[]): any;
|
|
539
|
+
|
|
540
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_db_merge(...args: any[]): any;
|
|
541
|
+
|
|
542
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_db_merge_with_options(...args: any[]): any;
|
|
543
|
+
|
|
544
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_db_put(...args: any[]): any;
|
|
545
|
+
|
|
546
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_db_put_with_options(...args: any[]): any;
|
|
547
|
+
|
|
548
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_db_scan(...args: any[]): any;
|
|
549
|
+
|
|
550
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_db_scan_prefix(...args: any[]): any;
|
|
551
|
+
|
|
552
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_db_scan_prefix_with_options(...args: any[]): any;
|
|
553
|
+
|
|
554
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_db_scan_with_options(...args: any[]): any;
|
|
555
|
+
|
|
556
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_db_shutdown(...args: any[]): any;
|
|
557
|
+
|
|
558
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_db_snapshot(...args: any[]): any;
|
|
559
|
+
|
|
560
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_db_status(...args: any[]): any;
|
|
561
|
+
|
|
562
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_db_write(...args: any[]): any;
|
|
563
|
+
|
|
564
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_db_write_with_options(...args: any[]): any;
|
|
565
|
+
|
|
566
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbreader_get(...args: any[]): any;
|
|
567
|
+
|
|
568
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbreader_get_with_options(...args: any[]): any;
|
|
569
|
+
|
|
570
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbreader_scan(...args: any[]): any;
|
|
571
|
+
|
|
572
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbreader_scan_prefix(...args: any[]): any;
|
|
573
|
+
|
|
574
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbreader_scan_prefix_with_options(...args: any[]): any;
|
|
575
|
+
|
|
576
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbreader_scan_with_options(...args: any[]): any;
|
|
577
|
+
|
|
578
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbreader_shutdown(...args: any[]): any;
|
|
579
|
+
|
|
580
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbreader_status(...args: any[]): any;
|
|
581
|
+
|
|
582
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbsnapshot_get(...args: any[]): any;
|
|
583
|
+
|
|
584
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbsnapshot_get_key_value(...args: any[]): any;
|
|
585
|
+
|
|
586
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbsnapshot_get_key_value_with_options(...args: any[]): any;
|
|
587
|
+
|
|
588
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbsnapshot_get_with_options(...args: any[]): any;
|
|
589
|
+
|
|
590
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbsnapshot_scan(...args: any[]): any;
|
|
591
|
+
|
|
592
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbsnapshot_scan_prefix(...args: any[]): any;
|
|
593
|
+
|
|
594
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbsnapshot_scan_prefix_with_options(...args: any[]): any;
|
|
595
|
+
|
|
596
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbsnapshot_scan_with_options(...args: any[]): any;
|
|
597
|
+
|
|
598
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbtransaction_commit(...args: any[]): any;
|
|
599
|
+
|
|
600
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbtransaction_commit_with_options(...args: any[]): any;
|
|
601
|
+
|
|
602
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbtransaction_delete(...args: any[]): any;
|
|
603
|
+
|
|
604
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbtransaction_get(...args: any[]): any;
|
|
605
|
+
|
|
606
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbtransaction_get_key_value(...args: any[]): any;
|
|
607
|
+
|
|
608
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbtransaction_get_key_value_with_options(...args: any[]): any;
|
|
609
|
+
|
|
610
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbtransaction_get_with_options(...args: any[]): any;
|
|
611
|
+
|
|
612
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbtransaction_id(...args: any[]): any;
|
|
613
|
+
|
|
614
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbtransaction_mark_read(...args: any[]): any;
|
|
615
|
+
|
|
616
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbtransaction_merge(...args: any[]): any;
|
|
617
|
+
|
|
618
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbtransaction_merge_with_options(...args: any[]): any;
|
|
619
|
+
|
|
620
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbtransaction_put(...args: any[]): any;
|
|
621
|
+
|
|
622
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbtransaction_put_with_options(...args: any[]): any;
|
|
623
|
+
|
|
624
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbtransaction_rollback(...args: any[]): any;
|
|
625
|
+
|
|
626
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbtransaction_scan(...args: any[]): any;
|
|
627
|
+
|
|
628
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbtransaction_scan_prefix(...args: any[]): any;
|
|
629
|
+
|
|
630
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbtransaction_scan_prefix_with_options(...args: any[]): any;
|
|
631
|
+
|
|
632
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbtransaction_scan_with_options(...args: any[]): any;
|
|
633
|
+
|
|
634
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbtransaction_seqnum(...args: any[]): any;
|
|
635
|
+
|
|
636
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbtransaction_unmark_write(...args: any[]): any;
|
|
637
|
+
|
|
638
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbiterator_next(...args: any[]): any;
|
|
639
|
+
|
|
640
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_dbiterator_seek(...args: any[]): any;
|
|
641
|
+
|
|
642
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_logcallback_log(...args: any[]): any;
|
|
643
|
+
|
|
644
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_mergeoperator_merge(...args: any[]): any;
|
|
645
|
+
|
|
646
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_counter_increment(...args: any[]): any;
|
|
647
|
+
|
|
648
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_defaultmetricsrecorder_metric_by_name_and_labels(...args: any[]): any;
|
|
649
|
+
|
|
650
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_defaultmetricsrecorder_metrics_by_name(...args: any[]): any;
|
|
651
|
+
|
|
652
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_defaultmetricsrecorder_register_counter(...args: any[]): any;
|
|
653
|
+
|
|
654
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_defaultmetricsrecorder_register_gauge(...args: any[]): any;
|
|
655
|
+
|
|
656
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_defaultmetricsrecorder_register_histogram(...args: any[]): any;
|
|
657
|
+
|
|
658
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_defaultmetricsrecorder_register_up_down_counter(...args: any[]): any;
|
|
659
|
+
|
|
660
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_defaultmetricsrecorder_snapshot(...args: any[]): any;
|
|
661
|
+
|
|
662
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_gauge_set(...args: any[]): any;
|
|
663
|
+
|
|
664
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_histogram_record(...args: any[]): any;
|
|
665
|
+
|
|
666
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_metricsrecorder_register_counter(...args: any[]): any;
|
|
667
|
+
|
|
668
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_metricsrecorder_register_gauge(...args: any[]): any;
|
|
669
|
+
|
|
670
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_metricsrecorder_register_up_down_counter(...args: any[]): any;
|
|
671
|
+
|
|
672
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_metricsrecorder_register_histogram(...args: any[]): any;
|
|
673
|
+
|
|
674
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_updowncounter_increment(...args: any[]): any;
|
|
675
|
+
|
|
676
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_settings_set(...args: any[]): any;
|
|
677
|
+
|
|
678
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_settings_to_json_string(...args: any[]): any;
|
|
679
|
+
|
|
680
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_walfile_id(...args: any[]): any;
|
|
681
|
+
|
|
682
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_walfile_iterator(...args: any[]): any;
|
|
683
|
+
|
|
684
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_walfile_metadata(...args: any[]): any;
|
|
685
|
+
|
|
686
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_walfile_next_file(...args: any[]): any;
|
|
687
|
+
|
|
688
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_walfile_next_id(...args: any[]): any;
|
|
689
|
+
|
|
690
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_walfileiterator_next(...args: any[]): any;
|
|
691
|
+
|
|
692
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_walreader_get(...args: any[]): any;
|
|
693
|
+
|
|
694
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_walreader_list(...args: any[]): any;
|
|
695
|
+
|
|
696
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_writebatch_delete(...args: any[]): any;
|
|
697
|
+
|
|
698
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_writebatch_merge(...args: any[]): any;
|
|
699
|
+
|
|
700
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_writebatch_merge_with_options(...args: any[]): any;
|
|
701
|
+
|
|
702
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_writebatch_put(...args: any[]): any;
|
|
703
|
+
|
|
704
|
+
export declare function uniffi_slatedb_uniffi_checksum_method_writebatch_put_with_options(...args: any[]): any;
|
|
705
|
+
|
|
706
|
+
export declare function uniffi_slatedb_uniffi_checksum_constructor_dbbuilder_new(...args: any[]): any;
|
|
707
|
+
|
|
708
|
+
export declare function uniffi_slatedb_uniffi_checksum_constructor_dbreaderbuilder_new(...args: any[]): any;
|
|
709
|
+
|
|
710
|
+
export declare function uniffi_slatedb_uniffi_checksum_constructor_defaultmetricsrecorder_new(...args: any[]): any;
|
|
711
|
+
|
|
712
|
+
export declare function uniffi_slatedb_uniffi_checksum_constructor_objectstore_from_env(...args: any[]): any;
|
|
713
|
+
|
|
714
|
+
export declare function uniffi_slatedb_uniffi_checksum_constructor_objectstore_resolve(...args: any[]): any;
|
|
715
|
+
|
|
716
|
+
export declare function uniffi_slatedb_uniffi_checksum_constructor_settings_default(...args: any[]): any;
|
|
717
|
+
|
|
718
|
+
export declare function uniffi_slatedb_uniffi_checksum_constructor_settings_from_env(...args: any[]): any;
|
|
719
|
+
|
|
720
|
+
export declare function uniffi_slatedb_uniffi_checksum_constructor_settings_from_env_with_default(...args: any[]): any;
|
|
721
|
+
|
|
722
|
+
export declare function uniffi_slatedb_uniffi_checksum_constructor_settings_from_file(...args: any[]): any;
|
|
723
|
+
|
|
724
|
+
export declare function uniffi_slatedb_uniffi_checksum_constructor_settings_from_json_string(...args: any[]): any;
|
|
725
|
+
|
|
726
|
+
export declare function uniffi_slatedb_uniffi_checksum_constructor_settings_load(...args: any[]): any;
|
|
727
|
+
|
|
728
|
+
export declare function uniffi_slatedb_uniffi_checksum_constructor_walreader_new(...args: any[]): any;
|
|
729
|
+
|
|
730
|
+
export declare function uniffi_slatedb_uniffi_checksum_constructor_writebatch_new(...args: any[]): any;
|
|
731
|
+
|
|
732
|
+
export declare function ffi_slatedb_uniffi_uniffi_contract_version(...args: any[]): any;
|