@rusaint/react-native 0.10.0-dev.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/LICENSE +20 -0
- package/README.md +15 -0
- package/android/CMakeLists.txt +78 -0
- package/android/build.gradle +143 -0
- package/android/cpp-adapter.cpp +63 -0
- package/android/generated/java/dev/eatsteak/rusaint/reactnative/NativeReactNativeSpec.java +41 -0
- package/android/generated/jni/CMakeLists.txt +36 -0
- package/android/generated/jni/RNReactNativeSpec-generated.cpp +38 -0
- package/android/generated/jni/RNReactNativeSpec.h +31 -0
- package/android/generated/jni/react/renderer/components/RNReactNativeSpec/RNReactNativeSpecJSI-generated.cpp +32 -0
- package/android/generated/jni/react/renderer/components/RNReactNativeSpec/RNReactNativeSpecJSI.h +80 -0
- package/android/gradle.properties +5 -0
- package/android/src/main/AndroidManifest.xml +5 -0
- package/android/src/main/java/dev/eatsteak/rusaint/reactnative/ReactNativeModule.kt +43 -0
- package/android/src/main/java/dev/eatsteak/rusaint/reactnative/ReactNativePackage.kt +34 -0
- package/android/src/main/jniLibs/arm64-v8a/librusaint_ffi.a +0 -0
- package/android/src/main/jniLibs/armeabi-v7a/librusaint_ffi.a +0 -0
- package/android/src/main/jniLibs/x86/librusaint_ffi.a +0 -0
- package/android/src/main/jniLibs/x86_64/librusaint_ffi.a +0 -0
- package/build/RusaintReactNativeFramework.xcframework/Info.plist +43 -0
- package/build/RusaintReactNativeFramework.xcframework/ios-arm64/librusaint_ffi.a +0 -0
- package/build/RusaintReactNativeFramework.xcframework/ios-arm64-simulator/librusaint_ffi.a +0 -0
- package/cpp/generated/rusaint.cpp +2485 -0
- package/cpp/generated/rusaint.hpp +168 -0
- package/cpp/generated/rusaint_ffi.cpp +7397 -0
- package/cpp/generated/rusaint_ffi.hpp +873 -0
- package/cpp/rusaint-react-native.cpp +18 -0
- package/cpp/rusaint-react-native.h +15 -0
- package/ios/ReactNative.h +16 -0
- package/ios/ReactNative.mm +66 -0
- package/ios/generated/RNReactNativeSpec/RNReactNativeSpec-generated.mm +46 -0
- package/ios/generated/RNReactNativeSpec/RNReactNativeSpec.h +63 -0
- package/ios/generated/RNReactNativeSpecJSI-generated.cpp +32 -0
- package/ios/generated/RNReactNativeSpecJSI.h +80 -0
- package/lib/commonjs/NativeReactNative.ts +10 -0
- package/lib/commonjs/generated/rusaint-ffi.js +44 -0
- package/lib/commonjs/generated/rusaint-ffi.js.map +1 -0
- package/lib/commonjs/generated/rusaint.js +3232 -0
- package/lib/commonjs/generated/rusaint.js.map +1 -0
- package/lib/commonjs/generated/rusaint_ffi-ffi.js +44 -0
- package/lib/commonjs/generated/rusaint_ffi-ffi.js.map +1 -0
- package/lib/commonjs/generated/rusaint_ffi.js +2493 -0
- package/lib/commonjs/generated/rusaint_ffi.js.map +1 -0
- package/lib/commonjs/index.js +68 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/package.json +1 -0
- package/lib/module/NativeReactNative.ts +10 -0
- package/lib/module/generated/rusaint-ffi.js +43 -0
- package/lib/module/generated/rusaint-ffi.js.map +1 -0
- package/lib/module/generated/rusaint.js +3226 -0
- package/lib/module/generated/rusaint.js.map +1 -0
- package/lib/module/generated/rusaint_ffi-ffi.js +43 -0
- package/lib/module/generated/rusaint_ffi-ffi.js.map +1 -0
- package/lib/module/generated/rusaint_ffi.js +2469 -0
- package/lib/module/generated/rusaint_ffi.js.map +1 -0
- package/lib/module/index.js +40 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/package.json +1 -0
- package/lib/typescript/commonjs/src/NativeReactNative.d.ts +8 -0
- package/lib/typescript/commonjs/src/NativeReactNative.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/generated/rusaint-ffi.d.ts +109 -0
- package/lib/typescript/commonjs/src/generated/rusaint-ffi.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/generated/rusaint.d.ts +2330 -0
- package/lib/typescript/commonjs/src/generated/rusaint.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/generated/rusaint_ffi-ffi.d.ts +300 -0
- package/lib/typescript/commonjs/src/generated/rusaint_ffi-ffi.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/generated/rusaint_ffi.d.ts +1111 -0
- package/lib/typescript/commonjs/src/generated/rusaint_ffi.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/index.d.ts +10 -0
- package/lib/typescript/commonjs/src/index.d.ts.map +1 -0
- package/package.json +185 -0
- package/react-native.config.js +12 -0
- package/rusaint-react-native.podspec +44 -0
- package/src/NativeReactNative.ts +10 -0
- package/src/generated/rusaint-ffi.ts +276 -0
- package/src/generated/rusaint.ts +4867 -0
- package/src/generated/rusaint_ffi-ffi.ts +832 -0
- package/src/generated/rusaint_ffi.ts +5519 -0
- package/src/index.tsx +38 -0
|
@@ -0,0 +1,873 @@
|
|
|
1
|
+
// This file was autogenerated by some hot garbage in the
|
|
2
|
+
// `uniffi-bindgen-react-native` crate. Trust me, you don't want to mess with
|
|
3
|
+
// it!
|
|
4
|
+
#pragma once
|
|
5
|
+
#include "UniffiCallInvoker.h"
|
|
6
|
+
#include <ReactCommon/CallInvoker.h>
|
|
7
|
+
#include <iostream>
|
|
8
|
+
#include <jsi/jsi.h>
|
|
9
|
+
#include <map>
|
|
10
|
+
#include <memory>
|
|
11
|
+
|
|
12
|
+
namespace react = facebook::react;
|
|
13
|
+
namespace jsi = facebook::jsi;
|
|
14
|
+
|
|
15
|
+
class NativeRusaintFfi : public jsi::HostObject {
|
|
16
|
+
private:
|
|
17
|
+
// For calling back into JS from Rust.
|
|
18
|
+
std::shared_ptr<uniffi_runtime::UniffiCallInvoker> callInvoker;
|
|
19
|
+
|
|
20
|
+
protected:
|
|
21
|
+
std::map<std::string, jsi::Value> props;
|
|
22
|
+
jsi::Value cpp_uniffi_internal_fn_func_ffi__string_to_byte_length(
|
|
23
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
24
|
+
size_t count);
|
|
25
|
+
jsi::Value cpp_uniffi_internal_fn_func_ffi__string_to_arraybuffer(
|
|
26
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
27
|
+
size_t count);
|
|
28
|
+
jsi::Value cpp_uniffi_internal_fn_func_ffi__arraybuffer_to_string(
|
|
29
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
30
|
+
size_t count);
|
|
31
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_clone_chapelapplication(
|
|
32
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
33
|
+
size_t count);
|
|
34
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_free_chapelapplication(
|
|
35
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
36
|
+
size_t count);
|
|
37
|
+
jsi::Value
|
|
38
|
+
cpp_uniffi_rusaint_ffi_fn_method_chapelapplication_get_selected_semester(
|
|
39
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
40
|
+
size_t count);
|
|
41
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_method_chapelapplication_information(
|
|
42
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
43
|
+
size_t count);
|
|
44
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_clone_chapelapplicationbuilder(
|
|
45
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
46
|
+
size_t count);
|
|
47
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_free_chapelapplicationbuilder(
|
|
48
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
49
|
+
size_t count);
|
|
50
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_constructor_chapelapplicationbuilder_new(
|
|
51
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
52
|
+
size_t count);
|
|
53
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_method_chapelapplicationbuilder_build(
|
|
54
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
55
|
+
size_t count);
|
|
56
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_clone_coursegradesapplication(
|
|
57
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
58
|
+
size_t count);
|
|
59
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_free_coursegradesapplication(
|
|
60
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
61
|
+
size_t count);
|
|
62
|
+
jsi::Value
|
|
63
|
+
cpp_uniffi_rusaint_ffi_fn_method_coursegradesapplication_certificated_summary(
|
|
64
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
65
|
+
size_t count);
|
|
66
|
+
jsi::Value
|
|
67
|
+
cpp_uniffi_rusaint_ffi_fn_method_coursegradesapplication_class_detail(
|
|
68
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
69
|
+
size_t count);
|
|
70
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_method_coursegradesapplication_classes(
|
|
71
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
72
|
+
size_t count);
|
|
73
|
+
jsi::Value
|
|
74
|
+
cpp_uniffi_rusaint_ffi_fn_method_coursegradesapplication_get_selected_semester(
|
|
75
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
76
|
+
size_t count);
|
|
77
|
+
jsi::Value
|
|
78
|
+
cpp_uniffi_rusaint_ffi_fn_method_coursegradesapplication_recorded_summary(
|
|
79
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
80
|
+
size_t count);
|
|
81
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_method_coursegradesapplication_semesters(
|
|
82
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
83
|
+
size_t count);
|
|
84
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_clone_coursegradesapplicationbuilder(
|
|
85
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
86
|
+
size_t count);
|
|
87
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_free_coursegradesapplicationbuilder(
|
|
88
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
89
|
+
size_t count);
|
|
90
|
+
jsi::Value
|
|
91
|
+
cpp_uniffi_rusaint_ffi_fn_constructor_coursegradesapplicationbuilder_new(
|
|
92
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
93
|
+
size_t count);
|
|
94
|
+
jsi::Value
|
|
95
|
+
cpp_uniffi_rusaint_ffi_fn_method_coursegradesapplicationbuilder_build(
|
|
96
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
97
|
+
size_t count);
|
|
98
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_clone_coursescheduleapplication(
|
|
99
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
100
|
+
size_t count);
|
|
101
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_free_coursescheduleapplication(
|
|
102
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
103
|
+
size_t count);
|
|
104
|
+
jsi::Value
|
|
105
|
+
cpp_uniffi_rusaint_ffi_fn_method_coursescheduleapplication_chapel_categories(
|
|
106
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
107
|
+
size_t count);
|
|
108
|
+
jsi::Value
|
|
109
|
+
cpp_uniffi_rusaint_ffi_fn_method_coursescheduleapplication_collages(
|
|
110
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
111
|
+
size_t count);
|
|
112
|
+
jsi::Value
|
|
113
|
+
cpp_uniffi_rusaint_ffi_fn_method_coursescheduleapplication_connected_majors(
|
|
114
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
115
|
+
size_t count);
|
|
116
|
+
jsi::Value
|
|
117
|
+
cpp_uniffi_rusaint_ffi_fn_method_coursescheduleapplication_departments(
|
|
118
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
119
|
+
size_t count);
|
|
120
|
+
jsi::Value
|
|
121
|
+
cpp_uniffi_rusaint_ffi_fn_method_coursescheduleapplication_find_lectures(
|
|
122
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
123
|
+
size_t count);
|
|
124
|
+
jsi::Value
|
|
125
|
+
cpp_uniffi_rusaint_ffi_fn_method_coursescheduleapplication_get_selected_semester(
|
|
126
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
127
|
+
size_t count);
|
|
128
|
+
jsi::Value
|
|
129
|
+
cpp_uniffi_rusaint_ffi_fn_method_coursescheduleapplication_graduated_collages(
|
|
130
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
131
|
+
size_t count);
|
|
132
|
+
jsi::Value
|
|
133
|
+
cpp_uniffi_rusaint_ffi_fn_method_coursescheduleapplication_graduated_departments(
|
|
134
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
135
|
+
size_t count);
|
|
136
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_method_coursescheduleapplication_majors(
|
|
137
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
138
|
+
size_t count);
|
|
139
|
+
jsi::Value
|
|
140
|
+
cpp_uniffi_rusaint_ffi_fn_method_coursescheduleapplication_optional_elective_categories(
|
|
141
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
142
|
+
size_t count);
|
|
143
|
+
jsi::Value
|
|
144
|
+
cpp_uniffi_rusaint_ffi_fn_method_coursescheduleapplication_required_electives(
|
|
145
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
146
|
+
size_t count);
|
|
147
|
+
jsi::Value
|
|
148
|
+
cpp_uniffi_rusaint_ffi_fn_method_coursescheduleapplication_united_majors(
|
|
149
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
150
|
+
size_t count);
|
|
151
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_clone_coursescheduleapplicationbuilder(
|
|
152
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
153
|
+
size_t count);
|
|
154
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_free_coursescheduleapplicationbuilder(
|
|
155
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
156
|
+
size_t count);
|
|
157
|
+
jsi::Value
|
|
158
|
+
cpp_uniffi_rusaint_ffi_fn_constructor_coursescheduleapplicationbuilder_new(
|
|
159
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
160
|
+
size_t count);
|
|
161
|
+
jsi::Value
|
|
162
|
+
cpp_uniffi_rusaint_ffi_fn_method_coursescheduleapplicationbuilder_build(
|
|
163
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
164
|
+
size_t count);
|
|
165
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_clone_graduationrequirementsapplication(
|
|
166
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
167
|
+
size_t count);
|
|
168
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_free_graduationrequirementsapplication(
|
|
169
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
170
|
+
size_t count);
|
|
171
|
+
jsi::Value
|
|
172
|
+
cpp_uniffi_rusaint_ffi_fn_method_graduationrequirementsapplication_requirements(
|
|
173
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
174
|
+
size_t count);
|
|
175
|
+
jsi::Value
|
|
176
|
+
cpp_uniffi_rusaint_ffi_fn_method_graduationrequirementsapplication_student_info(
|
|
177
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
178
|
+
size_t count);
|
|
179
|
+
jsi::Value
|
|
180
|
+
cpp_uniffi_rusaint_ffi_fn_clone_graduationrequirementsapplicationbuilder(
|
|
181
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
182
|
+
size_t count);
|
|
183
|
+
jsi::Value
|
|
184
|
+
cpp_uniffi_rusaint_ffi_fn_free_graduationrequirementsapplicationbuilder(
|
|
185
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
186
|
+
size_t count);
|
|
187
|
+
jsi::Value
|
|
188
|
+
cpp_uniffi_rusaint_ffi_fn_constructor_graduationrequirementsapplicationbuilder_new(
|
|
189
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
190
|
+
size_t count);
|
|
191
|
+
jsi::Value
|
|
192
|
+
cpp_uniffi_rusaint_ffi_fn_method_graduationrequirementsapplicationbuilder_build(
|
|
193
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
194
|
+
size_t count);
|
|
195
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_clone_lectureassessmentapplication(
|
|
196
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
197
|
+
size_t count);
|
|
198
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_free_lectureassessmentapplication(
|
|
199
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
200
|
+
size_t count);
|
|
201
|
+
jsi::Value
|
|
202
|
+
cpp_uniffi_rusaint_ffi_fn_method_lectureassessmentapplication_find_assessments(
|
|
203
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
204
|
+
size_t count);
|
|
205
|
+
jsi::Value
|
|
206
|
+
cpp_uniffi_rusaint_ffi_fn_method_lectureassessmentapplication_get_selected_semester(
|
|
207
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
208
|
+
size_t count);
|
|
209
|
+
jsi::Value
|
|
210
|
+
cpp_uniffi_rusaint_ffi_fn_clone_lectureassessmentapplicationbuilder(
|
|
211
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
212
|
+
size_t count);
|
|
213
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_free_lectureassessmentapplicationbuilder(
|
|
214
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
215
|
+
size_t count);
|
|
216
|
+
jsi::Value
|
|
217
|
+
cpp_uniffi_rusaint_ffi_fn_constructor_lectureassessmentapplicationbuilder_new(
|
|
218
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
219
|
+
size_t count);
|
|
220
|
+
jsi::Value
|
|
221
|
+
cpp_uniffi_rusaint_ffi_fn_method_lectureassessmentapplicationbuilder_build(
|
|
222
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
223
|
+
size_t count);
|
|
224
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_clone_personalcoursescheduleapplication(
|
|
225
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
226
|
+
size_t count);
|
|
227
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_free_personalcoursescheduleapplication(
|
|
228
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
229
|
+
size_t count);
|
|
230
|
+
jsi::Value
|
|
231
|
+
cpp_uniffi_rusaint_ffi_fn_method_personalcoursescheduleapplication_get_selected_semester(
|
|
232
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
233
|
+
size_t count);
|
|
234
|
+
jsi::Value
|
|
235
|
+
cpp_uniffi_rusaint_ffi_fn_method_personalcoursescheduleapplication_schedule(
|
|
236
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
237
|
+
size_t count);
|
|
238
|
+
jsi::Value
|
|
239
|
+
cpp_uniffi_rusaint_ffi_fn_clone_personalcoursescheduleapplicationbuilder(
|
|
240
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
241
|
+
size_t count);
|
|
242
|
+
jsi::Value
|
|
243
|
+
cpp_uniffi_rusaint_ffi_fn_free_personalcoursescheduleapplicationbuilder(
|
|
244
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
245
|
+
size_t count);
|
|
246
|
+
jsi::Value
|
|
247
|
+
cpp_uniffi_rusaint_ffi_fn_constructor_personalcoursescheduleapplicationbuilder_new(
|
|
248
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
249
|
+
size_t count);
|
|
250
|
+
jsi::Value
|
|
251
|
+
cpp_uniffi_rusaint_ffi_fn_method_personalcoursescheduleapplicationbuilder_build(
|
|
252
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
253
|
+
size_t count);
|
|
254
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_clone_scholarshipsapplication(
|
|
255
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
256
|
+
size_t count);
|
|
257
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_free_scholarshipsapplication(
|
|
258
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
259
|
+
size_t count);
|
|
260
|
+
jsi::Value
|
|
261
|
+
cpp_uniffi_rusaint_ffi_fn_method_scholarshipsapplication_scholarships(
|
|
262
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
263
|
+
size_t count);
|
|
264
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_clone_scholarshipsapplicationbuilder(
|
|
265
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
266
|
+
size_t count);
|
|
267
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_free_scholarshipsapplicationbuilder(
|
|
268
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
269
|
+
size_t count);
|
|
270
|
+
jsi::Value
|
|
271
|
+
cpp_uniffi_rusaint_ffi_fn_constructor_scholarshipsapplicationbuilder_new(
|
|
272
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
273
|
+
size_t count);
|
|
274
|
+
jsi::Value
|
|
275
|
+
cpp_uniffi_rusaint_ffi_fn_method_scholarshipsapplicationbuilder_build(
|
|
276
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
277
|
+
size_t count);
|
|
278
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_clone_studentinformationapplication(
|
|
279
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
280
|
+
size_t count);
|
|
281
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_free_studentinformationapplication(
|
|
282
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
283
|
+
size_t count);
|
|
284
|
+
jsi::Value
|
|
285
|
+
cpp_uniffi_rusaint_ffi_fn_method_studentinformationapplication_academic_record(
|
|
286
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
287
|
+
size_t count);
|
|
288
|
+
jsi::Value
|
|
289
|
+
cpp_uniffi_rusaint_ffi_fn_method_studentinformationapplication_bank_account(
|
|
290
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
291
|
+
size_t count);
|
|
292
|
+
jsi::Value
|
|
293
|
+
cpp_uniffi_rusaint_ffi_fn_method_studentinformationapplication_family(
|
|
294
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
295
|
+
size_t count);
|
|
296
|
+
jsi::Value
|
|
297
|
+
cpp_uniffi_rusaint_ffi_fn_method_studentinformationapplication_general(
|
|
298
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
299
|
+
size_t count);
|
|
300
|
+
jsi::Value
|
|
301
|
+
cpp_uniffi_rusaint_ffi_fn_method_studentinformationapplication_graduation(
|
|
302
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
303
|
+
size_t count);
|
|
304
|
+
jsi::Value
|
|
305
|
+
cpp_uniffi_rusaint_ffi_fn_method_studentinformationapplication_qualifications(
|
|
306
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
307
|
+
size_t count);
|
|
308
|
+
jsi::Value
|
|
309
|
+
cpp_uniffi_rusaint_ffi_fn_method_studentinformationapplication_religion(
|
|
310
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
311
|
+
size_t count);
|
|
312
|
+
jsi::Value
|
|
313
|
+
cpp_uniffi_rusaint_ffi_fn_method_studentinformationapplication_research_bank_account(
|
|
314
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
315
|
+
size_t count);
|
|
316
|
+
jsi::Value
|
|
317
|
+
cpp_uniffi_rusaint_ffi_fn_method_studentinformationapplication_transfer(
|
|
318
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
319
|
+
size_t count);
|
|
320
|
+
jsi::Value
|
|
321
|
+
cpp_uniffi_rusaint_ffi_fn_method_studentinformationapplication_work(
|
|
322
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
323
|
+
size_t count);
|
|
324
|
+
jsi::Value
|
|
325
|
+
cpp_uniffi_rusaint_ffi_fn_clone_studentinformationapplicationbuilder(
|
|
326
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
327
|
+
size_t count);
|
|
328
|
+
jsi::Value
|
|
329
|
+
cpp_uniffi_rusaint_ffi_fn_free_studentinformationapplicationbuilder(
|
|
330
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
331
|
+
size_t count);
|
|
332
|
+
jsi::Value
|
|
333
|
+
cpp_uniffi_rusaint_ffi_fn_constructor_studentinformationapplicationbuilder_new(
|
|
334
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
335
|
+
size_t count);
|
|
336
|
+
jsi::Value
|
|
337
|
+
cpp_uniffi_rusaint_ffi_fn_method_studentinformationapplicationbuilder_build(
|
|
338
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
339
|
+
size_t count);
|
|
340
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_clone_usaintsession(
|
|
341
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
342
|
+
size_t count);
|
|
343
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_free_usaintsession(
|
|
344
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
345
|
+
size_t count);
|
|
346
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_clone_usaintsessionbuilder(
|
|
347
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
348
|
+
size_t count);
|
|
349
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_free_usaintsessionbuilder(
|
|
350
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
351
|
+
size_t count);
|
|
352
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_constructor_usaintsessionbuilder_new(
|
|
353
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
354
|
+
size_t count);
|
|
355
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_method_usaintsessionbuilder_anonymous(
|
|
356
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
357
|
+
size_t count);
|
|
358
|
+
jsi::Value
|
|
359
|
+
cpp_uniffi_rusaint_ffi_fn_method_usaintsessionbuilder_with_password(
|
|
360
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
361
|
+
size_t count);
|
|
362
|
+
jsi::Value cpp_uniffi_rusaint_ffi_fn_method_usaintsessionbuilder_with_token(
|
|
363
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
364
|
+
size_t count);
|
|
365
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_poll_u8(jsi::Runtime &rt,
|
|
366
|
+
const jsi::Value &thisVal,
|
|
367
|
+
const jsi::Value *args,
|
|
368
|
+
size_t count);
|
|
369
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_cancel_u8(
|
|
370
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
371
|
+
size_t count);
|
|
372
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_free_u8(jsi::Runtime &rt,
|
|
373
|
+
const jsi::Value &thisVal,
|
|
374
|
+
const jsi::Value *args,
|
|
375
|
+
size_t count);
|
|
376
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_complete_u8(
|
|
377
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
378
|
+
size_t count);
|
|
379
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_poll_i8(jsi::Runtime &rt,
|
|
380
|
+
const jsi::Value &thisVal,
|
|
381
|
+
const jsi::Value *args,
|
|
382
|
+
size_t count);
|
|
383
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_cancel_i8(
|
|
384
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
385
|
+
size_t count);
|
|
386
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_free_i8(jsi::Runtime &rt,
|
|
387
|
+
const jsi::Value &thisVal,
|
|
388
|
+
const jsi::Value *args,
|
|
389
|
+
size_t count);
|
|
390
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_complete_i8(
|
|
391
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
392
|
+
size_t count);
|
|
393
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_poll_u16(jsi::Runtime &rt,
|
|
394
|
+
const jsi::Value &thisVal,
|
|
395
|
+
const jsi::Value *args,
|
|
396
|
+
size_t count);
|
|
397
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_cancel_u16(
|
|
398
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
399
|
+
size_t count);
|
|
400
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_free_u16(jsi::Runtime &rt,
|
|
401
|
+
const jsi::Value &thisVal,
|
|
402
|
+
const jsi::Value *args,
|
|
403
|
+
size_t count);
|
|
404
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_complete_u16(
|
|
405
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
406
|
+
size_t count);
|
|
407
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_poll_i16(jsi::Runtime &rt,
|
|
408
|
+
const jsi::Value &thisVal,
|
|
409
|
+
const jsi::Value *args,
|
|
410
|
+
size_t count);
|
|
411
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_cancel_i16(
|
|
412
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
413
|
+
size_t count);
|
|
414
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_free_i16(jsi::Runtime &rt,
|
|
415
|
+
const jsi::Value &thisVal,
|
|
416
|
+
const jsi::Value *args,
|
|
417
|
+
size_t count);
|
|
418
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_complete_i16(
|
|
419
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
420
|
+
size_t count);
|
|
421
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_poll_u32(jsi::Runtime &rt,
|
|
422
|
+
const jsi::Value &thisVal,
|
|
423
|
+
const jsi::Value *args,
|
|
424
|
+
size_t count);
|
|
425
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_cancel_u32(
|
|
426
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
427
|
+
size_t count);
|
|
428
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_free_u32(jsi::Runtime &rt,
|
|
429
|
+
const jsi::Value &thisVal,
|
|
430
|
+
const jsi::Value *args,
|
|
431
|
+
size_t count);
|
|
432
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_complete_u32(
|
|
433
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
434
|
+
size_t count);
|
|
435
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_poll_i32(jsi::Runtime &rt,
|
|
436
|
+
const jsi::Value &thisVal,
|
|
437
|
+
const jsi::Value *args,
|
|
438
|
+
size_t count);
|
|
439
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_cancel_i32(
|
|
440
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
441
|
+
size_t count);
|
|
442
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_free_i32(jsi::Runtime &rt,
|
|
443
|
+
const jsi::Value &thisVal,
|
|
444
|
+
const jsi::Value *args,
|
|
445
|
+
size_t count);
|
|
446
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_complete_i32(
|
|
447
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
448
|
+
size_t count);
|
|
449
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_poll_u64(jsi::Runtime &rt,
|
|
450
|
+
const jsi::Value &thisVal,
|
|
451
|
+
const jsi::Value *args,
|
|
452
|
+
size_t count);
|
|
453
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_cancel_u64(
|
|
454
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
455
|
+
size_t count);
|
|
456
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_free_u64(jsi::Runtime &rt,
|
|
457
|
+
const jsi::Value &thisVal,
|
|
458
|
+
const jsi::Value *args,
|
|
459
|
+
size_t count);
|
|
460
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_complete_u64(
|
|
461
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
462
|
+
size_t count);
|
|
463
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_poll_i64(jsi::Runtime &rt,
|
|
464
|
+
const jsi::Value &thisVal,
|
|
465
|
+
const jsi::Value *args,
|
|
466
|
+
size_t count);
|
|
467
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_cancel_i64(
|
|
468
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
469
|
+
size_t count);
|
|
470
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_free_i64(jsi::Runtime &rt,
|
|
471
|
+
const jsi::Value &thisVal,
|
|
472
|
+
const jsi::Value *args,
|
|
473
|
+
size_t count);
|
|
474
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_complete_i64(
|
|
475
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
476
|
+
size_t count);
|
|
477
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_poll_f32(jsi::Runtime &rt,
|
|
478
|
+
const jsi::Value &thisVal,
|
|
479
|
+
const jsi::Value *args,
|
|
480
|
+
size_t count);
|
|
481
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_cancel_f32(
|
|
482
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
483
|
+
size_t count);
|
|
484
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_free_f32(jsi::Runtime &rt,
|
|
485
|
+
const jsi::Value &thisVal,
|
|
486
|
+
const jsi::Value *args,
|
|
487
|
+
size_t count);
|
|
488
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_complete_f32(
|
|
489
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
490
|
+
size_t count);
|
|
491
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_poll_f64(jsi::Runtime &rt,
|
|
492
|
+
const jsi::Value &thisVal,
|
|
493
|
+
const jsi::Value *args,
|
|
494
|
+
size_t count);
|
|
495
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_cancel_f64(
|
|
496
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
497
|
+
size_t count);
|
|
498
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_free_f64(jsi::Runtime &rt,
|
|
499
|
+
const jsi::Value &thisVal,
|
|
500
|
+
const jsi::Value *args,
|
|
501
|
+
size_t count);
|
|
502
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_complete_f64(
|
|
503
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
504
|
+
size_t count);
|
|
505
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_poll_pointer(
|
|
506
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
507
|
+
size_t count);
|
|
508
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_cancel_pointer(
|
|
509
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
510
|
+
size_t count);
|
|
511
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_free_pointer(
|
|
512
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
513
|
+
size_t count);
|
|
514
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_complete_pointer(
|
|
515
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
516
|
+
size_t count);
|
|
517
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_poll_rust_buffer(
|
|
518
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
519
|
+
size_t count);
|
|
520
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_cancel_rust_buffer(
|
|
521
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
522
|
+
size_t count);
|
|
523
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_free_rust_buffer(
|
|
524
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
525
|
+
size_t count);
|
|
526
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_complete_rust_buffer(
|
|
527
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
528
|
+
size_t count);
|
|
529
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_poll_void(
|
|
530
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
531
|
+
size_t count);
|
|
532
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_cancel_void(
|
|
533
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
534
|
+
size_t count);
|
|
535
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_free_void(
|
|
536
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
537
|
+
size_t count);
|
|
538
|
+
jsi::Value cpp_ffi_rusaint_ffi_rust_future_complete_void(
|
|
539
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
540
|
+
size_t count);
|
|
541
|
+
jsi::Value
|
|
542
|
+
cpp_uniffi_rusaint_ffi_checksum_method_chapelapplication_get_selected_semester(
|
|
543
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
544
|
+
size_t count);
|
|
545
|
+
jsi::Value
|
|
546
|
+
cpp_uniffi_rusaint_ffi_checksum_method_chapelapplication_information(
|
|
547
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
548
|
+
size_t count);
|
|
549
|
+
jsi::Value
|
|
550
|
+
cpp_uniffi_rusaint_ffi_checksum_method_chapelapplicationbuilder_build(
|
|
551
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
552
|
+
size_t count);
|
|
553
|
+
jsi::Value
|
|
554
|
+
cpp_uniffi_rusaint_ffi_checksum_method_coursegradesapplication_certificated_summary(
|
|
555
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
556
|
+
size_t count);
|
|
557
|
+
jsi::Value
|
|
558
|
+
cpp_uniffi_rusaint_ffi_checksum_method_coursegradesapplication_class_detail(
|
|
559
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
560
|
+
size_t count);
|
|
561
|
+
jsi::Value
|
|
562
|
+
cpp_uniffi_rusaint_ffi_checksum_method_coursegradesapplication_classes(
|
|
563
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
564
|
+
size_t count);
|
|
565
|
+
jsi::Value
|
|
566
|
+
cpp_uniffi_rusaint_ffi_checksum_method_coursegradesapplication_get_selected_semester(
|
|
567
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
568
|
+
size_t count);
|
|
569
|
+
jsi::Value
|
|
570
|
+
cpp_uniffi_rusaint_ffi_checksum_method_coursegradesapplication_recorded_summary(
|
|
571
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
572
|
+
size_t count);
|
|
573
|
+
jsi::Value
|
|
574
|
+
cpp_uniffi_rusaint_ffi_checksum_method_coursegradesapplication_semesters(
|
|
575
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
576
|
+
size_t count);
|
|
577
|
+
jsi::Value
|
|
578
|
+
cpp_uniffi_rusaint_ffi_checksum_method_coursegradesapplicationbuilder_build(
|
|
579
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
580
|
+
size_t count);
|
|
581
|
+
jsi::Value
|
|
582
|
+
cpp_uniffi_rusaint_ffi_checksum_method_coursescheduleapplication_chapel_categories(
|
|
583
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
584
|
+
size_t count);
|
|
585
|
+
jsi::Value
|
|
586
|
+
cpp_uniffi_rusaint_ffi_checksum_method_coursescheduleapplication_collages(
|
|
587
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
588
|
+
size_t count);
|
|
589
|
+
jsi::Value
|
|
590
|
+
cpp_uniffi_rusaint_ffi_checksum_method_coursescheduleapplication_connected_majors(
|
|
591
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
592
|
+
size_t count);
|
|
593
|
+
jsi::Value
|
|
594
|
+
cpp_uniffi_rusaint_ffi_checksum_method_coursescheduleapplication_departments(
|
|
595
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
596
|
+
size_t count);
|
|
597
|
+
jsi::Value
|
|
598
|
+
cpp_uniffi_rusaint_ffi_checksum_method_coursescheduleapplication_find_lectures(
|
|
599
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
600
|
+
size_t count);
|
|
601
|
+
jsi::Value
|
|
602
|
+
cpp_uniffi_rusaint_ffi_checksum_method_coursescheduleapplication_get_selected_semester(
|
|
603
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
604
|
+
size_t count);
|
|
605
|
+
jsi::Value
|
|
606
|
+
cpp_uniffi_rusaint_ffi_checksum_method_coursescheduleapplication_graduated_collages(
|
|
607
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
608
|
+
size_t count);
|
|
609
|
+
jsi::Value
|
|
610
|
+
cpp_uniffi_rusaint_ffi_checksum_method_coursescheduleapplication_graduated_departments(
|
|
611
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
612
|
+
size_t count);
|
|
613
|
+
jsi::Value
|
|
614
|
+
cpp_uniffi_rusaint_ffi_checksum_method_coursescheduleapplication_majors(
|
|
615
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
616
|
+
size_t count);
|
|
617
|
+
jsi::Value
|
|
618
|
+
cpp_uniffi_rusaint_ffi_checksum_method_coursescheduleapplication_optional_elective_categories(
|
|
619
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
620
|
+
size_t count);
|
|
621
|
+
jsi::Value
|
|
622
|
+
cpp_uniffi_rusaint_ffi_checksum_method_coursescheduleapplication_required_electives(
|
|
623
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
624
|
+
size_t count);
|
|
625
|
+
jsi::Value
|
|
626
|
+
cpp_uniffi_rusaint_ffi_checksum_method_coursescheduleapplication_united_majors(
|
|
627
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
628
|
+
size_t count);
|
|
629
|
+
jsi::Value
|
|
630
|
+
cpp_uniffi_rusaint_ffi_checksum_method_coursescheduleapplicationbuilder_build(
|
|
631
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
632
|
+
size_t count);
|
|
633
|
+
jsi::Value
|
|
634
|
+
cpp_uniffi_rusaint_ffi_checksum_method_graduationrequirementsapplication_requirements(
|
|
635
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
636
|
+
size_t count);
|
|
637
|
+
jsi::Value
|
|
638
|
+
cpp_uniffi_rusaint_ffi_checksum_method_graduationrequirementsapplication_student_info(
|
|
639
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
640
|
+
size_t count);
|
|
641
|
+
jsi::Value
|
|
642
|
+
cpp_uniffi_rusaint_ffi_checksum_method_graduationrequirementsapplicationbuilder_build(
|
|
643
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
644
|
+
size_t count);
|
|
645
|
+
jsi::Value
|
|
646
|
+
cpp_uniffi_rusaint_ffi_checksum_method_lectureassessmentapplication_find_assessments(
|
|
647
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
648
|
+
size_t count);
|
|
649
|
+
jsi::Value
|
|
650
|
+
cpp_uniffi_rusaint_ffi_checksum_method_lectureassessmentapplication_get_selected_semester(
|
|
651
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
652
|
+
size_t count);
|
|
653
|
+
jsi::Value
|
|
654
|
+
cpp_uniffi_rusaint_ffi_checksum_method_lectureassessmentapplicationbuilder_build(
|
|
655
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
656
|
+
size_t count);
|
|
657
|
+
jsi::Value
|
|
658
|
+
cpp_uniffi_rusaint_ffi_checksum_method_personalcoursescheduleapplication_get_selected_semester(
|
|
659
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
660
|
+
size_t count);
|
|
661
|
+
jsi::Value
|
|
662
|
+
cpp_uniffi_rusaint_ffi_checksum_method_personalcoursescheduleapplication_schedule(
|
|
663
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
664
|
+
size_t count);
|
|
665
|
+
jsi::Value
|
|
666
|
+
cpp_uniffi_rusaint_ffi_checksum_method_personalcoursescheduleapplicationbuilder_build(
|
|
667
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
668
|
+
size_t count);
|
|
669
|
+
jsi::Value
|
|
670
|
+
cpp_uniffi_rusaint_ffi_checksum_method_scholarshipsapplication_scholarships(
|
|
671
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
672
|
+
size_t count);
|
|
673
|
+
jsi::Value
|
|
674
|
+
cpp_uniffi_rusaint_ffi_checksum_method_scholarshipsapplicationbuilder_build(
|
|
675
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
676
|
+
size_t count);
|
|
677
|
+
jsi::Value
|
|
678
|
+
cpp_uniffi_rusaint_ffi_checksum_method_studentinformationapplication_academic_record(
|
|
679
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
680
|
+
size_t count);
|
|
681
|
+
jsi::Value
|
|
682
|
+
cpp_uniffi_rusaint_ffi_checksum_method_studentinformationapplication_bank_account(
|
|
683
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
684
|
+
size_t count);
|
|
685
|
+
jsi::Value
|
|
686
|
+
cpp_uniffi_rusaint_ffi_checksum_method_studentinformationapplication_family(
|
|
687
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
688
|
+
size_t count);
|
|
689
|
+
jsi::Value
|
|
690
|
+
cpp_uniffi_rusaint_ffi_checksum_method_studentinformationapplication_general(
|
|
691
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
692
|
+
size_t count);
|
|
693
|
+
jsi::Value
|
|
694
|
+
cpp_uniffi_rusaint_ffi_checksum_method_studentinformationapplication_graduation(
|
|
695
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
696
|
+
size_t count);
|
|
697
|
+
jsi::Value
|
|
698
|
+
cpp_uniffi_rusaint_ffi_checksum_method_studentinformationapplication_qualifications(
|
|
699
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
700
|
+
size_t count);
|
|
701
|
+
jsi::Value
|
|
702
|
+
cpp_uniffi_rusaint_ffi_checksum_method_studentinformationapplication_religion(
|
|
703
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
704
|
+
size_t count);
|
|
705
|
+
jsi::Value
|
|
706
|
+
cpp_uniffi_rusaint_ffi_checksum_method_studentinformationapplication_research_bank_account(
|
|
707
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
708
|
+
size_t count);
|
|
709
|
+
jsi::Value
|
|
710
|
+
cpp_uniffi_rusaint_ffi_checksum_method_studentinformationapplication_transfer(
|
|
711
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
712
|
+
size_t count);
|
|
713
|
+
jsi::Value
|
|
714
|
+
cpp_uniffi_rusaint_ffi_checksum_method_studentinformationapplication_work(
|
|
715
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
716
|
+
size_t count);
|
|
717
|
+
jsi::Value
|
|
718
|
+
cpp_uniffi_rusaint_ffi_checksum_method_studentinformationapplicationbuilder_build(
|
|
719
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
720
|
+
size_t count);
|
|
721
|
+
jsi::Value
|
|
722
|
+
cpp_uniffi_rusaint_ffi_checksum_method_usaintsessionbuilder_anonymous(
|
|
723
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
724
|
+
size_t count);
|
|
725
|
+
jsi::Value
|
|
726
|
+
cpp_uniffi_rusaint_ffi_checksum_method_usaintsessionbuilder_with_password(
|
|
727
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
728
|
+
size_t count);
|
|
729
|
+
jsi::Value
|
|
730
|
+
cpp_uniffi_rusaint_ffi_checksum_method_usaintsessionbuilder_with_token(
|
|
731
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
732
|
+
size_t count);
|
|
733
|
+
jsi::Value
|
|
734
|
+
cpp_uniffi_rusaint_ffi_checksum_constructor_chapelapplicationbuilder_new(
|
|
735
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
736
|
+
size_t count);
|
|
737
|
+
jsi::Value
|
|
738
|
+
cpp_uniffi_rusaint_ffi_checksum_constructor_coursegradesapplicationbuilder_new(
|
|
739
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
740
|
+
size_t count);
|
|
741
|
+
jsi::Value
|
|
742
|
+
cpp_uniffi_rusaint_ffi_checksum_constructor_coursescheduleapplicationbuilder_new(
|
|
743
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
744
|
+
size_t count);
|
|
745
|
+
jsi::Value
|
|
746
|
+
cpp_uniffi_rusaint_ffi_checksum_constructor_graduationrequirementsapplicationbuilder_new(
|
|
747
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
748
|
+
size_t count);
|
|
749
|
+
jsi::Value
|
|
750
|
+
cpp_uniffi_rusaint_ffi_checksum_constructor_lectureassessmentapplicationbuilder_new(
|
|
751
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
752
|
+
size_t count);
|
|
753
|
+
jsi::Value
|
|
754
|
+
cpp_uniffi_rusaint_ffi_checksum_constructor_personalcoursescheduleapplicationbuilder_new(
|
|
755
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
756
|
+
size_t count);
|
|
757
|
+
jsi::Value
|
|
758
|
+
cpp_uniffi_rusaint_ffi_checksum_constructor_scholarshipsapplicationbuilder_new(
|
|
759
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
760
|
+
size_t count);
|
|
761
|
+
jsi::Value
|
|
762
|
+
cpp_uniffi_rusaint_ffi_checksum_constructor_studentinformationapplicationbuilder_new(
|
|
763
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
764
|
+
size_t count);
|
|
765
|
+
jsi::Value
|
|
766
|
+
cpp_uniffi_rusaint_ffi_checksum_constructor_usaintsessionbuilder_new(
|
|
767
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
768
|
+
size_t count);
|
|
769
|
+
jsi::Value cpp_ffi_rusaint_ffi_uniffi_contract_version(
|
|
770
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
771
|
+
size_t count);
|
|
772
|
+
jsi::Value cpp_uniffi_internal_fn_method_chapelapplication_ffi__bless_pointer(
|
|
773
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
774
|
+
size_t count);
|
|
775
|
+
jsi::Value
|
|
776
|
+
cpp_uniffi_internal_fn_method_chapelapplicationbuilder_ffi__bless_pointer(
|
|
777
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
778
|
+
size_t count);
|
|
779
|
+
jsi::Value
|
|
780
|
+
cpp_uniffi_internal_fn_method_coursegradesapplication_ffi__bless_pointer(
|
|
781
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
782
|
+
size_t count);
|
|
783
|
+
jsi::Value
|
|
784
|
+
cpp_uniffi_internal_fn_method_coursegradesapplicationbuilder_ffi__bless_pointer(
|
|
785
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
786
|
+
size_t count);
|
|
787
|
+
jsi::Value
|
|
788
|
+
cpp_uniffi_internal_fn_method_coursescheduleapplication_ffi__bless_pointer(
|
|
789
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
790
|
+
size_t count);
|
|
791
|
+
jsi::Value
|
|
792
|
+
cpp_uniffi_internal_fn_method_coursescheduleapplicationbuilder_ffi__bless_pointer(
|
|
793
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
794
|
+
size_t count);
|
|
795
|
+
jsi::Value
|
|
796
|
+
cpp_uniffi_internal_fn_method_graduationrequirementsapplication_ffi__bless_pointer(
|
|
797
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
798
|
+
size_t count);
|
|
799
|
+
jsi::Value
|
|
800
|
+
cpp_uniffi_internal_fn_method_graduationrequirementsapplicationbuilder_ffi__bless_pointer(
|
|
801
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
802
|
+
size_t count);
|
|
803
|
+
jsi::Value
|
|
804
|
+
cpp_uniffi_internal_fn_method_lectureassessmentapplication_ffi__bless_pointer(
|
|
805
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
806
|
+
size_t count);
|
|
807
|
+
jsi::Value
|
|
808
|
+
cpp_uniffi_internal_fn_method_lectureassessmentapplicationbuilder_ffi__bless_pointer(
|
|
809
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
810
|
+
size_t count);
|
|
811
|
+
jsi::Value
|
|
812
|
+
cpp_uniffi_internal_fn_method_personalcoursescheduleapplication_ffi__bless_pointer(
|
|
813
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
814
|
+
size_t count);
|
|
815
|
+
jsi::Value
|
|
816
|
+
cpp_uniffi_internal_fn_method_personalcoursescheduleapplicationbuilder_ffi__bless_pointer(
|
|
817
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
818
|
+
size_t count);
|
|
819
|
+
jsi::Value
|
|
820
|
+
cpp_uniffi_internal_fn_method_scholarshipsapplication_ffi__bless_pointer(
|
|
821
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
822
|
+
size_t count);
|
|
823
|
+
jsi::Value
|
|
824
|
+
cpp_uniffi_internal_fn_method_scholarshipsapplicationbuilder_ffi__bless_pointer(
|
|
825
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
826
|
+
size_t count);
|
|
827
|
+
jsi::Value
|
|
828
|
+
cpp_uniffi_internal_fn_method_studentinformationapplication_ffi__bless_pointer(
|
|
829
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
830
|
+
size_t count);
|
|
831
|
+
jsi::Value
|
|
832
|
+
cpp_uniffi_internal_fn_method_studentinformationapplicationbuilder_ffi__bless_pointer(
|
|
833
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
834
|
+
size_t count);
|
|
835
|
+
jsi::Value cpp_uniffi_internal_fn_method_usaintsession_ffi__bless_pointer(
|
|
836
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
837
|
+
size_t count);
|
|
838
|
+
jsi::Value
|
|
839
|
+
cpp_uniffi_internal_fn_method_usaintsessionbuilder_ffi__bless_pointer(
|
|
840
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
841
|
+
size_t count);
|
|
842
|
+
|
|
843
|
+
public:
|
|
844
|
+
NativeRusaintFfi(
|
|
845
|
+
jsi::Runtime &rt,
|
|
846
|
+
std::shared_ptr<uniffi_runtime::UniffiCallInvoker> callInvoker);
|
|
847
|
+
virtual ~NativeRusaintFfi();
|
|
848
|
+
|
|
849
|
+
/**
|
|
850
|
+
* The entry point into the crate.
|
|
851
|
+
*
|
|
852
|
+
* React Native must call `NativeRusaintFfi.registerModule(rt, callInvoker)`
|
|
853
|
+
* before using the Javascript interface.
|
|
854
|
+
*/
|
|
855
|
+
static void registerModule(jsi::Runtime &rt,
|
|
856
|
+
std::shared_ptr<react::CallInvoker> callInvoker);
|
|
857
|
+
|
|
858
|
+
/**
|
|
859
|
+
* Some cleanup into the crate goes here.
|
|
860
|
+
*
|
|
861
|
+
* Current implementation is empty, however, this is not guaranteed to always
|
|
862
|
+
* be the case.
|
|
863
|
+
*
|
|
864
|
+
* Clients should call `NativeRusaintFfi.unregisterModule(rt)` after final use
|
|
865
|
+
* where possible.
|
|
866
|
+
*/
|
|
867
|
+
static void unregisterModule(jsi::Runtime &rt);
|
|
868
|
+
|
|
869
|
+
virtual jsi::Value get(jsi::Runtime &rt, const jsi::PropNameID &name);
|
|
870
|
+
virtual void set(jsi::Runtime &rt, const jsi::PropNameID &name,
|
|
871
|
+
const jsi::Value &value);
|
|
872
|
+
virtual std::vector<jsi::PropNameID> getPropertyNames(jsi::Runtime &rt);
|
|
873
|
+
};
|