@rusaint/react-native 0.12.0 → 0.13.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/{rusaint-react-native.podspec → RusaintReactNative.podspec} +2 -2
- package/android/CMakeLists.txt +3 -4
- package/android/build.gradle +1 -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/RusaintReactNative.xcframework/Info.plist +4 -4
- package/build/RusaintReactNative.xcframework/_CodeSignature/CodeDirectory +0 -0
- package/build/RusaintReactNative.xcframework/_CodeSignature/CodeRequirements-1 +0 -0
- package/build/RusaintReactNative.xcframework/_CodeSignature/CodeResources +6 -6
- package/build/RusaintReactNative.xcframework/_CodeSignature/CodeSignature +0 -0
- package/build/RusaintReactNative.xcframework/ios-arm64/librusaint_ffi.a +0 -0
- package/build/RusaintReactNative.xcframework/ios-arm64-simulator/librusaint_ffi.a +0 -0
- package/lib/commonjs/generated/rusaint.js +39 -35
- package/lib/commonjs/generated/rusaint.js.map +1 -1
- package/lib/commonjs/generated/rusaint_ffi.js +598 -559
- package/lib/commonjs/generated/rusaint_ffi.js.map +1 -1
- package/lib/commonjs/index.js +11 -1
- package/lib/commonjs/index.js.map +1 -1
- package/lib/module/generated/rusaint.js +39 -35
- package/lib/module/generated/rusaint.js.map +1 -1
- package/lib/module/generated/rusaint_ffi.js +598 -559
- package/lib/module/generated/rusaint_ffi.js.map +1 -1
- package/lib/module/index.js +7 -0
- package/lib/module/index.js.map +1 -1
- package/lib/typescript/commonjs/src/generated/rusaint.d.ts +1 -1
- package/lib/typescript/commonjs/src/generated/rusaint.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/generated/rusaint_ffi.d.ts +89 -1
- package/lib/typescript/commonjs/src/generated/rusaint_ffi.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/index.d.ts +1 -0
- package/lib/typescript/commonjs/src/index.d.ts.map +1 -1
- package/lib/typescript/module/src/generated/rusaint.d.ts +1 -1
- package/lib/typescript/module/src/generated/rusaint.d.ts.map +1 -1
- package/lib/typescript/module/src/generated/rusaint_ffi.d.ts +89 -1
- package/lib/typescript/module/src/generated/rusaint_ffi.d.ts.map +1 -1
- package/lib/typescript/module/src/index.d.ts +1 -0
- package/lib/typescript/module/src/index.d.ts.map +1 -1
- package/package.json +19 -19
- package/src/generated/rusaint.ts +68 -64
- package/src/generated/rusaint_ffi.ts +1186 -1133
- package/src/index.tsx +7 -0
|
@@ -38,7 +38,9 @@ const {
|
|
|
38
38
|
FfiConverterTypeStudentTransferRecords,
|
|
39
39
|
FfiConverterTypeStudentWorkInformation
|
|
40
40
|
} = _rusaint.default.converters;
|
|
41
|
-
const uniffiCaller = new _uniffiBindgenReactNative.UniffiRustCaller()
|
|
41
|
+
const uniffiCaller = new _uniffiBindgenReactNative.UniffiRustCaller(() => ({
|
|
42
|
+
code: 0
|
|
43
|
+
}));
|
|
42
44
|
const uniffiIsDebug =
|
|
43
45
|
// @ts-ignore -- The process global might not be defined
|
|
44
46
|
typeof process !== 'object' ||
|
|
@@ -235,37 +237,39 @@ class ChapelApplication extends _uniffiBindgenReactNative.UniffiAbstractObject {
|
|
|
235
237
|
}
|
|
236
238
|
}
|
|
237
239
|
exports.ChapelApplication = ChapelApplication;
|
|
238
|
-
const uniffiTypeChapelApplicationObjectFactory = {
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
ptr
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
}
|
|
240
|
+
const uniffiTypeChapelApplicationObjectFactory = (() => {
|
|
241
|
+
return {
|
|
242
|
+
create(pointer) {
|
|
243
|
+
const instance = Object.create(ChapelApplication.prototype);
|
|
244
|
+
instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
|
|
245
|
+
instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
|
|
246
|
+
instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'ChapelApplication';
|
|
247
|
+
return instance;
|
|
248
|
+
},
|
|
249
|
+
bless(p) {
|
|
250
|
+
return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_chapelapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
|
|
251
|
+
},
|
|
252
|
+
unbless(ptr) {
|
|
253
|
+
ptr.markDestroyed();
|
|
254
|
+
},
|
|
255
|
+
pointer(obj) {
|
|
256
|
+
if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
|
|
257
|
+
throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
|
|
258
|
+
}
|
|
259
|
+
return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
|
|
260
|
+
},
|
|
261
|
+
clonePointer(obj) {
|
|
262
|
+
const pointer = this.pointer(obj);
|
|
263
|
+
return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_chapelapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
264
|
+
},
|
|
265
|
+
freePointer(pointer) {
|
|
266
|
+
uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_chapelapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
267
|
+
},
|
|
268
|
+
isConcreteType(obj) {
|
|
269
|
+
return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'ChapelApplication';
|
|
270
|
+
}
|
|
271
|
+
};
|
|
272
|
+
})();
|
|
269
273
|
// FfiConverter for ChapelApplicationInterface
|
|
270
274
|
const FfiConverterTypeChapelApplication = new _uniffiBindgenReactNative.FfiConverterObject(uniffiTypeChapelApplicationObjectFactory);
|
|
271
275
|
|
|
@@ -324,37 +328,39 @@ class ChapelApplicationBuilder extends _uniffiBindgenReactNative.UniffiAbstractO
|
|
|
324
328
|
}
|
|
325
329
|
}
|
|
326
330
|
exports.ChapelApplicationBuilder = ChapelApplicationBuilder;
|
|
327
|
-
const uniffiTypeChapelApplicationBuilderObjectFactory = {
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
ptr
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
}
|
|
331
|
+
const uniffiTypeChapelApplicationBuilderObjectFactory = (() => {
|
|
332
|
+
return {
|
|
333
|
+
create(pointer) {
|
|
334
|
+
const instance = Object.create(ChapelApplicationBuilder.prototype);
|
|
335
|
+
instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
|
|
336
|
+
instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
|
|
337
|
+
instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'ChapelApplicationBuilder';
|
|
338
|
+
return instance;
|
|
339
|
+
},
|
|
340
|
+
bless(p) {
|
|
341
|
+
return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_chapelapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
|
|
342
|
+
},
|
|
343
|
+
unbless(ptr) {
|
|
344
|
+
ptr.markDestroyed();
|
|
345
|
+
},
|
|
346
|
+
pointer(obj) {
|
|
347
|
+
if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
|
|
348
|
+
throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
|
|
349
|
+
}
|
|
350
|
+
return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
|
|
351
|
+
},
|
|
352
|
+
clonePointer(obj) {
|
|
353
|
+
const pointer = this.pointer(obj);
|
|
354
|
+
return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_chapelapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
355
|
+
},
|
|
356
|
+
freePointer(pointer) {
|
|
357
|
+
uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_chapelapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
358
|
+
},
|
|
359
|
+
isConcreteType(obj) {
|
|
360
|
+
return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'ChapelApplicationBuilder';
|
|
361
|
+
}
|
|
362
|
+
};
|
|
363
|
+
})();
|
|
358
364
|
// FfiConverter for ChapelApplicationBuilderInterface
|
|
359
365
|
const FfiConverterTypeChapelApplicationBuilder = new _uniffiBindgenReactNative.FfiConverterObject(uniffiTypeChapelApplicationBuilderObjectFactory);
|
|
360
366
|
|
|
@@ -497,37 +503,39 @@ class CourseGradesApplication extends _uniffiBindgenReactNative.UniffiAbstractOb
|
|
|
497
503
|
}
|
|
498
504
|
}
|
|
499
505
|
exports.CourseGradesApplication = CourseGradesApplication;
|
|
500
|
-
const uniffiTypeCourseGradesApplicationObjectFactory = {
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
ptr
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
}
|
|
506
|
+
const uniffiTypeCourseGradesApplicationObjectFactory = (() => {
|
|
507
|
+
return {
|
|
508
|
+
create(pointer) {
|
|
509
|
+
const instance = Object.create(CourseGradesApplication.prototype);
|
|
510
|
+
instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
|
|
511
|
+
instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
|
|
512
|
+
instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'CourseGradesApplication';
|
|
513
|
+
return instance;
|
|
514
|
+
},
|
|
515
|
+
bless(p) {
|
|
516
|
+
return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_coursegradesapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
|
|
517
|
+
},
|
|
518
|
+
unbless(ptr) {
|
|
519
|
+
ptr.markDestroyed();
|
|
520
|
+
},
|
|
521
|
+
pointer(obj) {
|
|
522
|
+
if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
|
|
523
|
+
throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
|
|
524
|
+
}
|
|
525
|
+
return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
|
|
526
|
+
},
|
|
527
|
+
clonePointer(obj) {
|
|
528
|
+
const pointer = this.pointer(obj);
|
|
529
|
+
return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_coursegradesapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
530
|
+
},
|
|
531
|
+
freePointer(pointer) {
|
|
532
|
+
uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_coursegradesapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
533
|
+
},
|
|
534
|
+
isConcreteType(obj) {
|
|
535
|
+
return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'CourseGradesApplication';
|
|
536
|
+
}
|
|
537
|
+
};
|
|
538
|
+
})();
|
|
531
539
|
// FfiConverter for CourseGradesApplicationInterface
|
|
532
540
|
const FfiConverterTypeCourseGradesApplication = new _uniffiBindgenReactNative.FfiConverterObject(uniffiTypeCourseGradesApplicationObjectFactory);
|
|
533
541
|
|
|
@@ -586,37 +594,39 @@ class CourseGradesApplicationBuilder extends _uniffiBindgenReactNative.UniffiAbs
|
|
|
586
594
|
}
|
|
587
595
|
}
|
|
588
596
|
exports.CourseGradesApplicationBuilder = CourseGradesApplicationBuilder;
|
|
589
|
-
const uniffiTypeCourseGradesApplicationBuilderObjectFactory = {
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
ptr
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
}
|
|
597
|
+
const uniffiTypeCourseGradesApplicationBuilderObjectFactory = (() => {
|
|
598
|
+
return {
|
|
599
|
+
create(pointer) {
|
|
600
|
+
const instance = Object.create(CourseGradesApplicationBuilder.prototype);
|
|
601
|
+
instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
|
|
602
|
+
instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
|
|
603
|
+
instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'CourseGradesApplicationBuilder';
|
|
604
|
+
return instance;
|
|
605
|
+
},
|
|
606
|
+
bless(p) {
|
|
607
|
+
return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_coursegradesapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
|
|
608
|
+
},
|
|
609
|
+
unbless(ptr) {
|
|
610
|
+
ptr.markDestroyed();
|
|
611
|
+
},
|
|
612
|
+
pointer(obj) {
|
|
613
|
+
if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
|
|
614
|
+
throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
|
|
615
|
+
}
|
|
616
|
+
return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
|
|
617
|
+
},
|
|
618
|
+
clonePointer(obj) {
|
|
619
|
+
const pointer = this.pointer(obj);
|
|
620
|
+
return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_coursegradesapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
621
|
+
},
|
|
622
|
+
freePointer(pointer) {
|
|
623
|
+
uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_coursegradesapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
624
|
+
},
|
|
625
|
+
isConcreteType(obj) {
|
|
626
|
+
return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'CourseGradesApplicationBuilder';
|
|
627
|
+
}
|
|
628
|
+
};
|
|
629
|
+
})();
|
|
620
630
|
// FfiConverter for CourseGradesApplicationBuilderInterface
|
|
621
631
|
const FfiConverterTypeCourseGradesApplicationBuilder = new _uniffiBindgenReactNative.FfiConverterObject(uniffiTypeCourseGradesApplicationBuilderObjectFactory);
|
|
622
632
|
|
|
@@ -858,37 +868,39 @@ class CourseScheduleApplication extends _uniffiBindgenReactNative.UniffiAbstract
|
|
|
858
868
|
}
|
|
859
869
|
}
|
|
860
870
|
exports.CourseScheduleApplication = CourseScheduleApplication;
|
|
861
|
-
const uniffiTypeCourseScheduleApplicationObjectFactory = {
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
ptr
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
}
|
|
871
|
+
const uniffiTypeCourseScheduleApplicationObjectFactory = (() => {
|
|
872
|
+
return {
|
|
873
|
+
create(pointer) {
|
|
874
|
+
const instance = Object.create(CourseScheduleApplication.prototype);
|
|
875
|
+
instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
|
|
876
|
+
instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
|
|
877
|
+
instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'CourseScheduleApplication';
|
|
878
|
+
return instance;
|
|
879
|
+
},
|
|
880
|
+
bless(p) {
|
|
881
|
+
return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_coursescheduleapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
|
|
882
|
+
},
|
|
883
|
+
unbless(ptr) {
|
|
884
|
+
ptr.markDestroyed();
|
|
885
|
+
},
|
|
886
|
+
pointer(obj) {
|
|
887
|
+
if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
|
|
888
|
+
throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
|
|
889
|
+
}
|
|
890
|
+
return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
|
|
891
|
+
},
|
|
892
|
+
clonePointer(obj) {
|
|
893
|
+
const pointer = this.pointer(obj);
|
|
894
|
+
return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_coursescheduleapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
895
|
+
},
|
|
896
|
+
freePointer(pointer) {
|
|
897
|
+
uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_coursescheduleapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
898
|
+
},
|
|
899
|
+
isConcreteType(obj) {
|
|
900
|
+
return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'CourseScheduleApplication';
|
|
901
|
+
}
|
|
902
|
+
};
|
|
903
|
+
})();
|
|
892
904
|
// FfiConverter for CourseScheduleApplicationInterface
|
|
893
905
|
const FfiConverterTypeCourseScheduleApplication = new _uniffiBindgenReactNative.FfiConverterObject(uniffiTypeCourseScheduleApplicationObjectFactory);
|
|
894
906
|
|
|
@@ -947,37 +959,39 @@ class CourseScheduleApplicationBuilder extends _uniffiBindgenReactNative.UniffiA
|
|
|
947
959
|
}
|
|
948
960
|
}
|
|
949
961
|
exports.CourseScheduleApplicationBuilder = CourseScheduleApplicationBuilder;
|
|
950
|
-
const uniffiTypeCourseScheduleApplicationBuilderObjectFactory = {
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
ptr
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
}
|
|
962
|
+
const uniffiTypeCourseScheduleApplicationBuilderObjectFactory = (() => {
|
|
963
|
+
return {
|
|
964
|
+
create(pointer) {
|
|
965
|
+
const instance = Object.create(CourseScheduleApplicationBuilder.prototype);
|
|
966
|
+
instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
|
|
967
|
+
instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
|
|
968
|
+
instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'CourseScheduleApplicationBuilder';
|
|
969
|
+
return instance;
|
|
970
|
+
},
|
|
971
|
+
bless(p) {
|
|
972
|
+
return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_coursescheduleapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
|
|
973
|
+
},
|
|
974
|
+
unbless(ptr) {
|
|
975
|
+
ptr.markDestroyed();
|
|
976
|
+
},
|
|
977
|
+
pointer(obj) {
|
|
978
|
+
if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
|
|
979
|
+
throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
|
|
980
|
+
}
|
|
981
|
+
return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
|
|
982
|
+
},
|
|
983
|
+
clonePointer(obj) {
|
|
984
|
+
const pointer = this.pointer(obj);
|
|
985
|
+
return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_coursescheduleapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
986
|
+
},
|
|
987
|
+
freePointer(pointer) {
|
|
988
|
+
uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_coursescheduleapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
989
|
+
},
|
|
990
|
+
isConcreteType(obj) {
|
|
991
|
+
return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'CourseScheduleApplicationBuilder';
|
|
992
|
+
}
|
|
993
|
+
};
|
|
994
|
+
})();
|
|
981
995
|
// FfiConverter for CourseScheduleApplicationBuilderInterface
|
|
982
996
|
const FfiConverterTypeCourseScheduleApplicationBuilder = new _uniffiBindgenReactNative.FfiConverterObject(uniffiTypeCourseScheduleApplicationBuilderObjectFactory);
|
|
983
997
|
|
|
@@ -1048,37 +1062,39 @@ class GraduationRequirementsApplication extends _uniffiBindgenReactNative.Uniffi
|
|
|
1048
1062
|
}
|
|
1049
1063
|
}
|
|
1050
1064
|
exports.GraduationRequirementsApplication = GraduationRequirementsApplication;
|
|
1051
|
-
const uniffiTypeGraduationRequirementsApplicationObjectFactory = {
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
ptr
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
}
|
|
1065
|
+
const uniffiTypeGraduationRequirementsApplicationObjectFactory = (() => {
|
|
1066
|
+
return {
|
|
1067
|
+
create(pointer) {
|
|
1068
|
+
const instance = Object.create(GraduationRequirementsApplication.prototype);
|
|
1069
|
+
instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
|
|
1070
|
+
instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
|
|
1071
|
+
instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'GraduationRequirementsApplication';
|
|
1072
|
+
return instance;
|
|
1073
|
+
},
|
|
1074
|
+
bless(p) {
|
|
1075
|
+
return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_graduationrequirementsapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
|
|
1076
|
+
},
|
|
1077
|
+
unbless(ptr) {
|
|
1078
|
+
ptr.markDestroyed();
|
|
1079
|
+
},
|
|
1080
|
+
pointer(obj) {
|
|
1081
|
+
if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
|
|
1082
|
+
throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
|
|
1083
|
+
}
|
|
1084
|
+
return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
|
|
1085
|
+
},
|
|
1086
|
+
clonePointer(obj) {
|
|
1087
|
+
const pointer = this.pointer(obj);
|
|
1088
|
+
return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_graduationrequirementsapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
1089
|
+
},
|
|
1090
|
+
freePointer(pointer) {
|
|
1091
|
+
uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_graduationrequirementsapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
1092
|
+
},
|
|
1093
|
+
isConcreteType(obj) {
|
|
1094
|
+
return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'GraduationRequirementsApplication';
|
|
1095
|
+
}
|
|
1096
|
+
};
|
|
1097
|
+
})();
|
|
1082
1098
|
// FfiConverter for GraduationRequirementsApplicationInterface
|
|
1083
1099
|
const FfiConverterTypeGraduationRequirementsApplication = new _uniffiBindgenReactNative.FfiConverterObject(uniffiTypeGraduationRequirementsApplicationObjectFactory);
|
|
1084
1100
|
|
|
@@ -1137,37 +1153,39 @@ class GraduationRequirementsApplicationBuilder extends _uniffiBindgenReactNative
|
|
|
1137
1153
|
}
|
|
1138
1154
|
}
|
|
1139
1155
|
exports.GraduationRequirementsApplicationBuilder = GraduationRequirementsApplicationBuilder;
|
|
1140
|
-
const uniffiTypeGraduationRequirementsApplicationBuilderObjectFactory = {
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
ptr
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
}
|
|
1156
|
+
const uniffiTypeGraduationRequirementsApplicationBuilderObjectFactory = (() => {
|
|
1157
|
+
return {
|
|
1158
|
+
create(pointer) {
|
|
1159
|
+
const instance = Object.create(GraduationRequirementsApplicationBuilder.prototype);
|
|
1160
|
+
instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
|
|
1161
|
+
instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
|
|
1162
|
+
instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'GraduationRequirementsApplicationBuilder';
|
|
1163
|
+
return instance;
|
|
1164
|
+
},
|
|
1165
|
+
bless(p) {
|
|
1166
|
+
return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_graduationrequirementsapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
|
|
1167
|
+
},
|
|
1168
|
+
unbless(ptr) {
|
|
1169
|
+
ptr.markDestroyed();
|
|
1170
|
+
},
|
|
1171
|
+
pointer(obj) {
|
|
1172
|
+
if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
|
|
1173
|
+
throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
|
|
1174
|
+
}
|
|
1175
|
+
return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
|
|
1176
|
+
},
|
|
1177
|
+
clonePointer(obj) {
|
|
1178
|
+
const pointer = this.pointer(obj);
|
|
1179
|
+
return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_graduationrequirementsapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
1180
|
+
},
|
|
1181
|
+
freePointer(pointer) {
|
|
1182
|
+
uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_graduationrequirementsapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
1183
|
+
},
|
|
1184
|
+
isConcreteType(obj) {
|
|
1185
|
+
return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'GraduationRequirementsApplicationBuilder';
|
|
1186
|
+
}
|
|
1187
|
+
};
|
|
1188
|
+
})();
|
|
1171
1189
|
// FfiConverter for GraduationRequirementsApplicationBuilderInterface
|
|
1172
1190
|
const FfiConverterTypeGraduationRequirementsApplicationBuilder = new _uniffiBindgenReactNative.FfiConverterObject(uniffiTypeGraduationRequirementsApplicationBuilderObjectFactory);
|
|
1173
1191
|
|
|
@@ -1239,37 +1257,39 @@ class LectureAssessmentApplication extends _uniffiBindgenReactNative.UniffiAbstr
|
|
|
1239
1257
|
}
|
|
1240
1258
|
}
|
|
1241
1259
|
exports.LectureAssessmentApplication = LectureAssessmentApplication;
|
|
1242
|
-
const uniffiTypeLectureAssessmentApplicationObjectFactory = {
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
ptr
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
}
|
|
1260
|
+
const uniffiTypeLectureAssessmentApplicationObjectFactory = (() => {
|
|
1261
|
+
return {
|
|
1262
|
+
create(pointer) {
|
|
1263
|
+
const instance = Object.create(LectureAssessmentApplication.prototype);
|
|
1264
|
+
instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
|
|
1265
|
+
instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
|
|
1266
|
+
instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'LectureAssessmentApplication';
|
|
1267
|
+
return instance;
|
|
1268
|
+
},
|
|
1269
|
+
bless(p) {
|
|
1270
|
+
return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_lectureassessmentapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
|
|
1271
|
+
},
|
|
1272
|
+
unbless(ptr) {
|
|
1273
|
+
ptr.markDestroyed();
|
|
1274
|
+
},
|
|
1275
|
+
pointer(obj) {
|
|
1276
|
+
if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
|
|
1277
|
+
throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
|
|
1278
|
+
}
|
|
1279
|
+
return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
|
|
1280
|
+
},
|
|
1281
|
+
clonePointer(obj) {
|
|
1282
|
+
const pointer = this.pointer(obj);
|
|
1283
|
+
return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_lectureassessmentapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
1284
|
+
},
|
|
1285
|
+
freePointer(pointer) {
|
|
1286
|
+
uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_lectureassessmentapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
1287
|
+
},
|
|
1288
|
+
isConcreteType(obj) {
|
|
1289
|
+
return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'LectureAssessmentApplication';
|
|
1290
|
+
}
|
|
1291
|
+
};
|
|
1292
|
+
})();
|
|
1273
1293
|
// FfiConverter for LectureAssessmentApplicationInterface
|
|
1274
1294
|
const FfiConverterTypeLectureAssessmentApplication = new _uniffiBindgenReactNative.FfiConverterObject(uniffiTypeLectureAssessmentApplicationObjectFactory);
|
|
1275
1295
|
|
|
@@ -1328,37 +1348,39 @@ class LectureAssessmentApplicationBuilder extends _uniffiBindgenReactNative.Unif
|
|
|
1328
1348
|
}
|
|
1329
1349
|
}
|
|
1330
1350
|
exports.LectureAssessmentApplicationBuilder = LectureAssessmentApplicationBuilder;
|
|
1331
|
-
const uniffiTypeLectureAssessmentApplicationBuilderObjectFactory = {
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
ptr
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
}
|
|
1351
|
+
const uniffiTypeLectureAssessmentApplicationBuilderObjectFactory = (() => {
|
|
1352
|
+
return {
|
|
1353
|
+
create(pointer) {
|
|
1354
|
+
const instance = Object.create(LectureAssessmentApplicationBuilder.prototype);
|
|
1355
|
+
instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
|
|
1356
|
+
instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
|
|
1357
|
+
instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'LectureAssessmentApplicationBuilder';
|
|
1358
|
+
return instance;
|
|
1359
|
+
},
|
|
1360
|
+
bless(p) {
|
|
1361
|
+
return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_lectureassessmentapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
|
|
1362
|
+
},
|
|
1363
|
+
unbless(ptr) {
|
|
1364
|
+
ptr.markDestroyed();
|
|
1365
|
+
},
|
|
1366
|
+
pointer(obj) {
|
|
1367
|
+
if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
|
|
1368
|
+
throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
|
|
1369
|
+
}
|
|
1370
|
+
return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
|
|
1371
|
+
},
|
|
1372
|
+
clonePointer(obj) {
|
|
1373
|
+
const pointer = this.pointer(obj);
|
|
1374
|
+
return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_lectureassessmentapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
1375
|
+
},
|
|
1376
|
+
freePointer(pointer) {
|
|
1377
|
+
uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_lectureassessmentapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
1378
|
+
},
|
|
1379
|
+
isConcreteType(obj) {
|
|
1380
|
+
return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'LectureAssessmentApplicationBuilder';
|
|
1381
|
+
}
|
|
1382
|
+
};
|
|
1383
|
+
})();
|
|
1362
1384
|
// FfiConverter for LectureAssessmentApplicationBuilderInterface
|
|
1363
1385
|
const FfiConverterTypeLectureAssessmentApplicationBuilder = new _uniffiBindgenReactNative.FfiConverterObject(uniffiTypeLectureAssessmentApplicationBuilderObjectFactory);
|
|
1364
1386
|
|
|
@@ -1430,37 +1452,39 @@ class PersonalCourseScheduleApplication extends _uniffiBindgenReactNative.Uniffi
|
|
|
1430
1452
|
}
|
|
1431
1453
|
}
|
|
1432
1454
|
exports.PersonalCourseScheduleApplication = PersonalCourseScheduleApplication;
|
|
1433
|
-
const uniffiTypePersonalCourseScheduleApplicationObjectFactory = {
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
ptr
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
}
|
|
1455
|
+
const uniffiTypePersonalCourseScheduleApplicationObjectFactory = (() => {
|
|
1456
|
+
return {
|
|
1457
|
+
create(pointer) {
|
|
1458
|
+
const instance = Object.create(PersonalCourseScheduleApplication.prototype);
|
|
1459
|
+
instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
|
|
1460
|
+
instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
|
|
1461
|
+
instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'PersonalCourseScheduleApplication';
|
|
1462
|
+
return instance;
|
|
1463
|
+
},
|
|
1464
|
+
bless(p) {
|
|
1465
|
+
return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_personalcoursescheduleapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
|
|
1466
|
+
},
|
|
1467
|
+
unbless(ptr) {
|
|
1468
|
+
ptr.markDestroyed();
|
|
1469
|
+
},
|
|
1470
|
+
pointer(obj) {
|
|
1471
|
+
if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
|
|
1472
|
+
throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
|
|
1473
|
+
}
|
|
1474
|
+
return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
|
|
1475
|
+
},
|
|
1476
|
+
clonePointer(obj) {
|
|
1477
|
+
const pointer = this.pointer(obj);
|
|
1478
|
+
return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_personalcoursescheduleapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
1479
|
+
},
|
|
1480
|
+
freePointer(pointer) {
|
|
1481
|
+
uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_personalcoursescheduleapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
1482
|
+
},
|
|
1483
|
+
isConcreteType(obj) {
|
|
1484
|
+
return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'PersonalCourseScheduleApplication';
|
|
1485
|
+
}
|
|
1486
|
+
};
|
|
1487
|
+
})();
|
|
1464
1488
|
// FfiConverter for PersonalCourseScheduleApplicationInterface
|
|
1465
1489
|
const FfiConverterTypePersonalCourseScheduleApplication = new _uniffiBindgenReactNative.FfiConverterObject(uniffiTypePersonalCourseScheduleApplicationObjectFactory);
|
|
1466
1490
|
|
|
@@ -1519,37 +1543,39 @@ class PersonalCourseScheduleApplicationBuilder extends _uniffiBindgenReactNative
|
|
|
1519
1543
|
}
|
|
1520
1544
|
}
|
|
1521
1545
|
exports.PersonalCourseScheduleApplicationBuilder = PersonalCourseScheduleApplicationBuilder;
|
|
1522
|
-
const uniffiTypePersonalCourseScheduleApplicationBuilderObjectFactory = {
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
ptr
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
}
|
|
1546
|
+
const uniffiTypePersonalCourseScheduleApplicationBuilderObjectFactory = (() => {
|
|
1547
|
+
return {
|
|
1548
|
+
create(pointer) {
|
|
1549
|
+
const instance = Object.create(PersonalCourseScheduleApplicationBuilder.prototype);
|
|
1550
|
+
instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
|
|
1551
|
+
instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
|
|
1552
|
+
instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'PersonalCourseScheduleApplicationBuilder';
|
|
1553
|
+
return instance;
|
|
1554
|
+
},
|
|
1555
|
+
bless(p) {
|
|
1556
|
+
return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_personalcoursescheduleapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
|
|
1557
|
+
},
|
|
1558
|
+
unbless(ptr) {
|
|
1559
|
+
ptr.markDestroyed();
|
|
1560
|
+
},
|
|
1561
|
+
pointer(obj) {
|
|
1562
|
+
if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
|
|
1563
|
+
throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
|
|
1564
|
+
}
|
|
1565
|
+
return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
|
|
1566
|
+
},
|
|
1567
|
+
clonePointer(obj) {
|
|
1568
|
+
const pointer = this.pointer(obj);
|
|
1569
|
+
return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_personalcoursescheduleapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
1570
|
+
},
|
|
1571
|
+
freePointer(pointer) {
|
|
1572
|
+
uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_personalcoursescheduleapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
1573
|
+
},
|
|
1574
|
+
isConcreteType(obj) {
|
|
1575
|
+
return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'PersonalCourseScheduleApplicationBuilder';
|
|
1576
|
+
}
|
|
1577
|
+
};
|
|
1578
|
+
})();
|
|
1553
1579
|
// FfiConverter for PersonalCourseScheduleApplicationBuilderInterface
|
|
1554
1580
|
const FfiConverterTypePersonalCourseScheduleApplicationBuilder = new _uniffiBindgenReactNative.FfiConverterObject(uniffiTypePersonalCourseScheduleApplicationBuilderObjectFactory);
|
|
1555
1581
|
|
|
@@ -1603,37 +1629,39 @@ class ScholarshipsApplication extends _uniffiBindgenReactNative.UniffiAbstractOb
|
|
|
1603
1629
|
}
|
|
1604
1630
|
}
|
|
1605
1631
|
exports.ScholarshipsApplication = ScholarshipsApplication;
|
|
1606
|
-
const uniffiTypeScholarshipsApplicationObjectFactory = {
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
ptr
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
}
|
|
1632
|
+
const uniffiTypeScholarshipsApplicationObjectFactory = (() => {
|
|
1633
|
+
return {
|
|
1634
|
+
create(pointer) {
|
|
1635
|
+
const instance = Object.create(ScholarshipsApplication.prototype);
|
|
1636
|
+
instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
|
|
1637
|
+
instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
|
|
1638
|
+
instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'ScholarshipsApplication';
|
|
1639
|
+
return instance;
|
|
1640
|
+
},
|
|
1641
|
+
bless(p) {
|
|
1642
|
+
return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_scholarshipsapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
|
|
1643
|
+
},
|
|
1644
|
+
unbless(ptr) {
|
|
1645
|
+
ptr.markDestroyed();
|
|
1646
|
+
},
|
|
1647
|
+
pointer(obj) {
|
|
1648
|
+
if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
|
|
1649
|
+
throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
|
|
1650
|
+
}
|
|
1651
|
+
return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
|
|
1652
|
+
},
|
|
1653
|
+
clonePointer(obj) {
|
|
1654
|
+
const pointer = this.pointer(obj);
|
|
1655
|
+
return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_scholarshipsapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
1656
|
+
},
|
|
1657
|
+
freePointer(pointer) {
|
|
1658
|
+
uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_scholarshipsapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
1659
|
+
},
|
|
1660
|
+
isConcreteType(obj) {
|
|
1661
|
+
return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'ScholarshipsApplication';
|
|
1662
|
+
}
|
|
1663
|
+
};
|
|
1664
|
+
})();
|
|
1637
1665
|
// FfiConverter for ScholarshipsApplicationInterface
|
|
1638
1666
|
const FfiConverterTypeScholarshipsApplication = new _uniffiBindgenReactNative.FfiConverterObject(uniffiTypeScholarshipsApplicationObjectFactory);
|
|
1639
1667
|
|
|
@@ -1692,37 +1720,39 @@ class ScholarshipsApplicationBuilder extends _uniffiBindgenReactNative.UniffiAbs
|
|
|
1692
1720
|
}
|
|
1693
1721
|
}
|
|
1694
1722
|
exports.ScholarshipsApplicationBuilder = ScholarshipsApplicationBuilder;
|
|
1695
|
-
const uniffiTypeScholarshipsApplicationBuilderObjectFactory = {
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
ptr
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
}
|
|
1723
|
+
const uniffiTypeScholarshipsApplicationBuilderObjectFactory = (() => {
|
|
1724
|
+
return {
|
|
1725
|
+
create(pointer) {
|
|
1726
|
+
const instance = Object.create(ScholarshipsApplicationBuilder.prototype);
|
|
1727
|
+
instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
|
|
1728
|
+
instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
|
|
1729
|
+
instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'ScholarshipsApplicationBuilder';
|
|
1730
|
+
return instance;
|
|
1731
|
+
},
|
|
1732
|
+
bless(p) {
|
|
1733
|
+
return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_scholarshipsapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
|
|
1734
|
+
},
|
|
1735
|
+
unbless(ptr) {
|
|
1736
|
+
ptr.markDestroyed();
|
|
1737
|
+
},
|
|
1738
|
+
pointer(obj) {
|
|
1739
|
+
if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
|
|
1740
|
+
throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
|
|
1741
|
+
}
|
|
1742
|
+
return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
|
|
1743
|
+
},
|
|
1744
|
+
clonePointer(obj) {
|
|
1745
|
+
const pointer = this.pointer(obj);
|
|
1746
|
+
return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_scholarshipsapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
1747
|
+
},
|
|
1748
|
+
freePointer(pointer) {
|
|
1749
|
+
uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_scholarshipsapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
1750
|
+
},
|
|
1751
|
+
isConcreteType(obj) {
|
|
1752
|
+
return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'ScholarshipsApplicationBuilder';
|
|
1753
|
+
}
|
|
1754
|
+
};
|
|
1755
|
+
})();
|
|
1726
1756
|
// FfiConverter for ScholarshipsApplicationBuilderInterface
|
|
1727
1757
|
const FfiConverterTypeScholarshipsApplicationBuilder = new _uniffiBindgenReactNative.FfiConverterObject(uniffiTypeScholarshipsApplicationBuilderObjectFactory);
|
|
1728
1758
|
|
|
@@ -1929,37 +1959,39 @@ class StudentInformationApplication extends _uniffiBindgenReactNative.UniffiAbst
|
|
|
1929
1959
|
}
|
|
1930
1960
|
}
|
|
1931
1961
|
exports.StudentInformationApplication = StudentInformationApplication;
|
|
1932
|
-
const uniffiTypeStudentInformationApplicationObjectFactory = {
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
ptr
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
}
|
|
1962
|
+
const uniffiTypeStudentInformationApplicationObjectFactory = (() => {
|
|
1963
|
+
return {
|
|
1964
|
+
create(pointer) {
|
|
1965
|
+
const instance = Object.create(StudentInformationApplication.prototype);
|
|
1966
|
+
instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
|
|
1967
|
+
instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
|
|
1968
|
+
instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'StudentInformationApplication';
|
|
1969
|
+
return instance;
|
|
1970
|
+
},
|
|
1971
|
+
bless(p) {
|
|
1972
|
+
return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_studentinformationapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
|
|
1973
|
+
},
|
|
1974
|
+
unbless(ptr) {
|
|
1975
|
+
ptr.markDestroyed();
|
|
1976
|
+
},
|
|
1977
|
+
pointer(obj) {
|
|
1978
|
+
if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
|
|
1979
|
+
throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
|
|
1980
|
+
}
|
|
1981
|
+
return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
|
|
1982
|
+
},
|
|
1983
|
+
clonePointer(obj) {
|
|
1984
|
+
const pointer = this.pointer(obj);
|
|
1985
|
+
return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_studentinformationapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
1986
|
+
},
|
|
1987
|
+
freePointer(pointer) {
|
|
1988
|
+
uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_studentinformationapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
1989
|
+
},
|
|
1990
|
+
isConcreteType(obj) {
|
|
1991
|
+
return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'StudentInformationApplication';
|
|
1992
|
+
}
|
|
1993
|
+
};
|
|
1994
|
+
})();
|
|
1963
1995
|
// FfiConverter for StudentInformationApplicationInterface
|
|
1964
1996
|
const FfiConverterTypeStudentInformationApplication = new _uniffiBindgenReactNative.FfiConverterObject(uniffiTypeStudentInformationApplicationObjectFactory);
|
|
1965
1997
|
|
|
@@ -2018,37 +2050,39 @@ class StudentInformationApplicationBuilder extends _uniffiBindgenReactNative.Uni
|
|
|
2018
2050
|
}
|
|
2019
2051
|
}
|
|
2020
2052
|
exports.StudentInformationApplicationBuilder = StudentInformationApplicationBuilder;
|
|
2021
|
-
const uniffiTypeStudentInformationApplicationBuilderObjectFactory = {
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
ptr
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
}
|
|
2053
|
+
const uniffiTypeStudentInformationApplicationBuilderObjectFactory = (() => {
|
|
2054
|
+
return {
|
|
2055
|
+
create(pointer) {
|
|
2056
|
+
const instance = Object.create(StudentInformationApplicationBuilder.prototype);
|
|
2057
|
+
instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
|
|
2058
|
+
instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
|
|
2059
|
+
instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'StudentInformationApplicationBuilder';
|
|
2060
|
+
return instance;
|
|
2061
|
+
},
|
|
2062
|
+
bless(p) {
|
|
2063
|
+
return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_studentinformationapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
|
|
2064
|
+
},
|
|
2065
|
+
unbless(ptr) {
|
|
2066
|
+
ptr.markDestroyed();
|
|
2067
|
+
},
|
|
2068
|
+
pointer(obj) {
|
|
2069
|
+
if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
|
|
2070
|
+
throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
|
|
2071
|
+
}
|
|
2072
|
+
return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
|
|
2073
|
+
},
|
|
2074
|
+
clonePointer(obj) {
|
|
2075
|
+
const pointer = this.pointer(obj);
|
|
2076
|
+
return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_studentinformationapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
2077
|
+
},
|
|
2078
|
+
freePointer(pointer) {
|
|
2079
|
+
uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_studentinformationapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
2080
|
+
},
|
|
2081
|
+
isConcreteType(obj) {
|
|
2082
|
+
return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'StudentInformationApplicationBuilder';
|
|
2083
|
+
}
|
|
2084
|
+
};
|
|
2085
|
+
})();
|
|
2052
2086
|
// FfiConverter for StudentInformationApplicationBuilderInterface
|
|
2053
2087
|
const FfiConverterTypeStudentInformationApplicationBuilder = new _uniffiBindgenReactNative.FfiConverterObject(uniffiTypeStudentInformationApplicationBuilderObjectFactory);
|
|
2054
2088
|
|
|
@@ -2087,37 +2121,39 @@ class USaintSession extends _uniffiBindgenReactNative.UniffiAbstractObject {
|
|
|
2087
2121
|
}
|
|
2088
2122
|
}
|
|
2089
2123
|
exports.USaintSession = USaintSession;
|
|
2090
|
-
const uniffiTypeUSaintSessionObjectFactory = {
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
ptr
|
|
2103
|
-
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
}
|
|
2124
|
+
const uniffiTypeUSaintSessionObjectFactory = (() => {
|
|
2125
|
+
return {
|
|
2126
|
+
create(pointer) {
|
|
2127
|
+
const instance = Object.create(USaintSession.prototype);
|
|
2128
|
+
instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
|
|
2129
|
+
instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
|
|
2130
|
+
instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'USaintSession';
|
|
2131
|
+
return instance;
|
|
2132
|
+
},
|
|
2133
|
+
bless(p) {
|
|
2134
|
+
return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_usaintsession_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
|
|
2135
|
+
},
|
|
2136
|
+
unbless(ptr) {
|
|
2137
|
+
ptr.markDestroyed();
|
|
2138
|
+
},
|
|
2139
|
+
pointer(obj) {
|
|
2140
|
+
if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
|
|
2141
|
+
throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
|
|
2142
|
+
}
|
|
2143
|
+
return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
|
|
2144
|
+
},
|
|
2145
|
+
clonePointer(obj) {
|
|
2146
|
+
const pointer = this.pointer(obj);
|
|
2147
|
+
return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_usaintsession(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
2148
|
+
},
|
|
2149
|
+
freePointer(pointer) {
|
|
2150
|
+
uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_usaintsession(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
2151
|
+
},
|
|
2152
|
+
isConcreteType(obj) {
|
|
2153
|
+
return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'USaintSession';
|
|
2154
|
+
}
|
|
2155
|
+
};
|
|
2156
|
+
})();
|
|
2121
2157
|
// FfiConverter for USaintSessionInterface
|
|
2122
2158
|
const FfiConverterTypeUSaintSession = new _uniffiBindgenReactNative.FfiConverterObject(uniffiTypeUSaintSessionObjectFactory);
|
|
2123
2159
|
|
|
@@ -2218,37 +2254,39 @@ class USaintSessionBuilder extends _uniffiBindgenReactNative.UniffiAbstractObjec
|
|
|
2218
2254
|
}
|
|
2219
2255
|
}
|
|
2220
2256
|
exports.USaintSessionBuilder = USaintSessionBuilder;
|
|
2221
|
-
const uniffiTypeUSaintSessionBuilderObjectFactory = {
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
ptr
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
}
|
|
2257
|
+
const uniffiTypeUSaintSessionBuilderObjectFactory = (() => {
|
|
2258
|
+
return {
|
|
2259
|
+
create(pointer) {
|
|
2260
|
+
const instance = Object.create(USaintSessionBuilder.prototype);
|
|
2261
|
+
instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
|
|
2262
|
+
instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
|
|
2263
|
+
instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'USaintSessionBuilder';
|
|
2264
|
+
return instance;
|
|
2265
|
+
},
|
|
2266
|
+
bless(p) {
|
|
2267
|
+
return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_usaintsessionbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
|
|
2268
|
+
},
|
|
2269
|
+
unbless(ptr) {
|
|
2270
|
+
ptr.markDestroyed();
|
|
2271
|
+
},
|
|
2272
|
+
pointer(obj) {
|
|
2273
|
+
if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
|
|
2274
|
+
throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
|
|
2275
|
+
}
|
|
2276
|
+
return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
|
|
2277
|
+
},
|
|
2278
|
+
clonePointer(obj) {
|
|
2279
|
+
const pointer = this.pointer(obj);
|
|
2280
|
+
return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_usaintsessionbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
2281
|
+
},
|
|
2282
|
+
freePointer(pointer) {
|
|
2283
|
+
uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_usaintsessionbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
|
|
2284
|
+
},
|
|
2285
|
+
isConcreteType(obj) {
|
|
2286
|
+
return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'USaintSessionBuilder';
|
|
2287
|
+
}
|
|
2288
|
+
};
|
|
2289
|
+
})();
|
|
2252
2290
|
// FfiConverter for USaintSessionBuilderInterface
|
|
2253
2291
|
const FfiConverterTypeUSaintSessionBuilder = new _uniffiBindgenReactNative.FfiConverterObject(uniffiTypeUSaintSessionBuilderObjectFactory);
|
|
2254
2292
|
|
|
@@ -2481,6 +2519,7 @@ var _default = exports.default = Object.freeze({
|
|
|
2481
2519
|
FfiConverterTypeLectureAssessmentApplicationBuilder,
|
|
2482
2520
|
FfiConverterTypePersonalCourseScheduleApplication,
|
|
2483
2521
|
FfiConverterTypePersonalCourseScheduleApplicationBuilder,
|
|
2522
|
+
FfiConverterTypeRusaintError,
|
|
2484
2523
|
FfiConverterTypeScholarshipsApplication,
|
|
2485
2524
|
FfiConverterTypeScholarshipsApplicationBuilder,
|
|
2486
2525
|
FfiConverterTypeStudentInformationApplication,
|