@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.
Files changed (42) hide show
  1. package/{rusaint-react-native.podspec → RusaintReactNative.podspec} +2 -2
  2. package/android/CMakeLists.txt +3 -4
  3. package/android/build.gradle +1 -0
  4. package/android/src/main/jniLibs/arm64-v8a/librusaint_ffi.a +0 -0
  5. package/android/src/main/jniLibs/armeabi-v7a/librusaint_ffi.a +0 -0
  6. package/android/src/main/jniLibs/x86/librusaint_ffi.a +0 -0
  7. package/android/src/main/jniLibs/x86_64/librusaint_ffi.a +0 -0
  8. package/build/RusaintReactNative.xcframework/Info.plist +4 -4
  9. package/build/RusaintReactNative.xcframework/_CodeSignature/CodeDirectory +0 -0
  10. package/build/RusaintReactNative.xcframework/_CodeSignature/CodeRequirements-1 +0 -0
  11. package/build/RusaintReactNative.xcframework/_CodeSignature/CodeResources +6 -6
  12. package/build/RusaintReactNative.xcframework/_CodeSignature/CodeSignature +0 -0
  13. package/build/RusaintReactNative.xcframework/ios-arm64/librusaint_ffi.a +0 -0
  14. package/build/RusaintReactNative.xcframework/ios-arm64-simulator/librusaint_ffi.a +0 -0
  15. package/lib/commonjs/generated/rusaint.js +39 -35
  16. package/lib/commonjs/generated/rusaint.js.map +1 -1
  17. package/lib/commonjs/generated/rusaint_ffi.js +598 -559
  18. package/lib/commonjs/generated/rusaint_ffi.js.map +1 -1
  19. package/lib/commonjs/index.js +11 -1
  20. package/lib/commonjs/index.js.map +1 -1
  21. package/lib/module/generated/rusaint.js +39 -35
  22. package/lib/module/generated/rusaint.js.map +1 -1
  23. package/lib/module/generated/rusaint_ffi.js +598 -559
  24. package/lib/module/generated/rusaint_ffi.js.map +1 -1
  25. package/lib/module/index.js +7 -0
  26. package/lib/module/index.js.map +1 -1
  27. package/lib/typescript/commonjs/src/generated/rusaint.d.ts +1 -1
  28. package/lib/typescript/commonjs/src/generated/rusaint.d.ts.map +1 -1
  29. package/lib/typescript/commonjs/src/generated/rusaint_ffi.d.ts +89 -1
  30. package/lib/typescript/commonjs/src/generated/rusaint_ffi.d.ts.map +1 -1
  31. package/lib/typescript/commonjs/src/index.d.ts +1 -0
  32. package/lib/typescript/commonjs/src/index.d.ts.map +1 -1
  33. package/lib/typescript/module/src/generated/rusaint.d.ts +1 -1
  34. package/lib/typescript/module/src/generated/rusaint.d.ts.map +1 -1
  35. package/lib/typescript/module/src/generated/rusaint_ffi.d.ts +89 -1
  36. package/lib/typescript/module/src/generated/rusaint_ffi.d.ts.map +1 -1
  37. package/lib/typescript/module/src/index.d.ts +1 -0
  38. package/lib/typescript/module/src/index.d.ts.map +1 -1
  39. package/package.json +19 -19
  40. package/src/generated/rusaint.ts +68 -64
  41. package/src/generated/rusaint_ffi.ts +1186 -1133
  42. 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
- create(pointer) {
240
- const instance = Object.create(ChapelApplication.prototype);
241
- instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
242
- instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
243
- instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'ChapelApplication';
244
- return instance;
245
- },
246
- bless(p) {
247
- return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_chapelapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
248
- },
249
- unbless(ptr) {
250
- ptr.markDestroyed();
251
- },
252
- pointer(obj) {
253
- if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
254
- throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
255
- }
256
- return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
257
- },
258
- clonePointer(obj) {
259
- const pointer = this.pointer(obj);
260
- return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_chapelapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
261
- },
262
- freePointer(pointer) {
263
- uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_chapelapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
264
- },
265
- isConcreteType(obj) {
266
- return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'ChapelApplication';
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
- create(pointer) {
329
- const instance = Object.create(ChapelApplicationBuilder.prototype);
330
- instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
331
- instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
332
- instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'ChapelApplicationBuilder';
333
- return instance;
334
- },
335
- bless(p) {
336
- return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_chapelapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
337
- },
338
- unbless(ptr) {
339
- ptr.markDestroyed();
340
- },
341
- pointer(obj) {
342
- if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
343
- throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
344
- }
345
- return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
346
- },
347
- clonePointer(obj) {
348
- const pointer = this.pointer(obj);
349
- return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_chapelapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
350
- },
351
- freePointer(pointer) {
352
- uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_chapelapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
353
- },
354
- isConcreteType(obj) {
355
- return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'ChapelApplicationBuilder';
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
- create(pointer) {
502
- const instance = Object.create(CourseGradesApplication.prototype);
503
- instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
504
- instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
505
- instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'CourseGradesApplication';
506
- return instance;
507
- },
508
- bless(p) {
509
- return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_coursegradesapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
510
- },
511
- unbless(ptr) {
512
- ptr.markDestroyed();
513
- },
514
- pointer(obj) {
515
- if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
516
- throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
517
- }
518
- return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
519
- },
520
- clonePointer(obj) {
521
- const pointer = this.pointer(obj);
522
- return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_coursegradesapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
523
- },
524
- freePointer(pointer) {
525
- uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_coursegradesapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
526
- },
527
- isConcreteType(obj) {
528
- return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'CourseGradesApplication';
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
- create(pointer) {
591
- const instance = Object.create(CourseGradesApplicationBuilder.prototype);
592
- instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
593
- instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
594
- instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'CourseGradesApplicationBuilder';
595
- return instance;
596
- },
597
- bless(p) {
598
- return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_coursegradesapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
599
- },
600
- unbless(ptr) {
601
- ptr.markDestroyed();
602
- },
603
- pointer(obj) {
604
- if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
605
- throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
606
- }
607
- return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
608
- },
609
- clonePointer(obj) {
610
- const pointer = this.pointer(obj);
611
- return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_coursegradesapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
612
- },
613
- freePointer(pointer) {
614
- uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_coursegradesapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
615
- },
616
- isConcreteType(obj) {
617
- return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'CourseGradesApplicationBuilder';
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
- create(pointer) {
863
- const instance = Object.create(CourseScheduleApplication.prototype);
864
- instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
865
- instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
866
- instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'CourseScheduleApplication';
867
- return instance;
868
- },
869
- bless(p) {
870
- return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_coursescheduleapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
871
- },
872
- unbless(ptr) {
873
- ptr.markDestroyed();
874
- },
875
- pointer(obj) {
876
- if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
877
- throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
878
- }
879
- return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
880
- },
881
- clonePointer(obj) {
882
- const pointer = this.pointer(obj);
883
- return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_coursescheduleapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
884
- },
885
- freePointer(pointer) {
886
- uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_coursescheduleapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
887
- },
888
- isConcreteType(obj) {
889
- return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'CourseScheduleApplication';
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
- create(pointer) {
952
- const instance = Object.create(CourseScheduleApplicationBuilder.prototype);
953
- instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
954
- instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
955
- instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'CourseScheduleApplicationBuilder';
956
- return instance;
957
- },
958
- bless(p) {
959
- return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_coursescheduleapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
960
- },
961
- unbless(ptr) {
962
- ptr.markDestroyed();
963
- },
964
- pointer(obj) {
965
- if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
966
- throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
967
- }
968
- return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
969
- },
970
- clonePointer(obj) {
971
- const pointer = this.pointer(obj);
972
- return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_coursescheduleapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
973
- },
974
- freePointer(pointer) {
975
- uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_coursescheduleapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
976
- },
977
- isConcreteType(obj) {
978
- return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'CourseScheduleApplicationBuilder';
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
- create(pointer) {
1053
- const instance = Object.create(GraduationRequirementsApplication.prototype);
1054
- instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
1055
- instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
1056
- instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'GraduationRequirementsApplication';
1057
- return instance;
1058
- },
1059
- bless(p) {
1060
- return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_graduationrequirementsapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
1061
- },
1062
- unbless(ptr) {
1063
- ptr.markDestroyed();
1064
- },
1065
- pointer(obj) {
1066
- if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
1067
- throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
1068
- }
1069
- return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
1070
- },
1071
- clonePointer(obj) {
1072
- const pointer = this.pointer(obj);
1073
- return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_graduationrequirementsapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1074
- },
1075
- freePointer(pointer) {
1076
- uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_graduationrequirementsapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1077
- },
1078
- isConcreteType(obj) {
1079
- return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'GraduationRequirementsApplication';
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
- create(pointer) {
1142
- const instance = Object.create(GraduationRequirementsApplicationBuilder.prototype);
1143
- instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
1144
- instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
1145
- instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'GraduationRequirementsApplicationBuilder';
1146
- return instance;
1147
- },
1148
- bless(p) {
1149
- return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_graduationrequirementsapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
1150
- },
1151
- unbless(ptr) {
1152
- ptr.markDestroyed();
1153
- },
1154
- pointer(obj) {
1155
- if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
1156
- throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
1157
- }
1158
- return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
1159
- },
1160
- clonePointer(obj) {
1161
- const pointer = this.pointer(obj);
1162
- return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_graduationrequirementsapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1163
- },
1164
- freePointer(pointer) {
1165
- uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_graduationrequirementsapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1166
- },
1167
- isConcreteType(obj) {
1168
- return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'GraduationRequirementsApplicationBuilder';
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
- create(pointer) {
1244
- const instance = Object.create(LectureAssessmentApplication.prototype);
1245
- instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
1246
- instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
1247
- instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'LectureAssessmentApplication';
1248
- return instance;
1249
- },
1250
- bless(p) {
1251
- return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_lectureassessmentapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
1252
- },
1253
- unbless(ptr) {
1254
- ptr.markDestroyed();
1255
- },
1256
- pointer(obj) {
1257
- if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
1258
- throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
1259
- }
1260
- return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
1261
- },
1262
- clonePointer(obj) {
1263
- const pointer = this.pointer(obj);
1264
- return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_lectureassessmentapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1265
- },
1266
- freePointer(pointer) {
1267
- uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_lectureassessmentapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1268
- },
1269
- isConcreteType(obj) {
1270
- return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'LectureAssessmentApplication';
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
- create(pointer) {
1333
- const instance = Object.create(LectureAssessmentApplicationBuilder.prototype);
1334
- instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
1335
- instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
1336
- instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'LectureAssessmentApplicationBuilder';
1337
- return instance;
1338
- },
1339
- bless(p) {
1340
- return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_lectureassessmentapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
1341
- },
1342
- unbless(ptr) {
1343
- ptr.markDestroyed();
1344
- },
1345
- pointer(obj) {
1346
- if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
1347
- throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
1348
- }
1349
- return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
1350
- },
1351
- clonePointer(obj) {
1352
- const pointer = this.pointer(obj);
1353
- return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_lectureassessmentapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1354
- },
1355
- freePointer(pointer) {
1356
- uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_lectureassessmentapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1357
- },
1358
- isConcreteType(obj) {
1359
- return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'LectureAssessmentApplicationBuilder';
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
- create(pointer) {
1435
- const instance = Object.create(PersonalCourseScheduleApplication.prototype);
1436
- instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
1437
- instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
1438
- instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'PersonalCourseScheduleApplication';
1439
- return instance;
1440
- },
1441
- bless(p) {
1442
- return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_personalcoursescheduleapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
1443
- },
1444
- unbless(ptr) {
1445
- ptr.markDestroyed();
1446
- },
1447
- pointer(obj) {
1448
- if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
1449
- throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
1450
- }
1451
- return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
1452
- },
1453
- clonePointer(obj) {
1454
- const pointer = this.pointer(obj);
1455
- return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_personalcoursescheduleapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1456
- },
1457
- freePointer(pointer) {
1458
- uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_personalcoursescheduleapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1459
- },
1460
- isConcreteType(obj) {
1461
- return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'PersonalCourseScheduleApplication';
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
- create(pointer) {
1524
- const instance = Object.create(PersonalCourseScheduleApplicationBuilder.prototype);
1525
- instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
1526
- instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
1527
- instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'PersonalCourseScheduleApplicationBuilder';
1528
- return instance;
1529
- },
1530
- bless(p) {
1531
- return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_personalcoursescheduleapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
1532
- },
1533
- unbless(ptr) {
1534
- ptr.markDestroyed();
1535
- },
1536
- pointer(obj) {
1537
- if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
1538
- throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
1539
- }
1540
- return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
1541
- },
1542
- clonePointer(obj) {
1543
- const pointer = this.pointer(obj);
1544
- return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_personalcoursescheduleapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1545
- },
1546
- freePointer(pointer) {
1547
- uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_personalcoursescheduleapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1548
- },
1549
- isConcreteType(obj) {
1550
- return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'PersonalCourseScheduleApplicationBuilder';
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
- create(pointer) {
1608
- const instance = Object.create(ScholarshipsApplication.prototype);
1609
- instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
1610
- instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
1611
- instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'ScholarshipsApplication';
1612
- return instance;
1613
- },
1614
- bless(p) {
1615
- return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_scholarshipsapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
1616
- },
1617
- unbless(ptr) {
1618
- ptr.markDestroyed();
1619
- },
1620
- pointer(obj) {
1621
- if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
1622
- throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
1623
- }
1624
- return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
1625
- },
1626
- clonePointer(obj) {
1627
- const pointer = this.pointer(obj);
1628
- return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_scholarshipsapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1629
- },
1630
- freePointer(pointer) {
1631
- uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_scholarshipsapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1632
- },
1633
- isConcreteType(obj) {
1634
- return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'ScholarshipsApplication';
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
- create(pointer) {
1697
- const instance = Object.create(ScholarshipsApplicationBuilder.prototype);
1698
- instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
1699
- instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
1700
- instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'ScholarshipsApplicationBuilder';
1701
- return instance;
1702
- },
1703
- bless(p) {
1704
- return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_scholarshipsapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
1705
- },
1706
- unbless(ptr) {
1707
- ptr.markDestroyed();
1708
- },
1709
- pointer(obj) {
1710
- if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
1711
- throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
1712
- }
1713
- return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
1714
- },
1715
- clonePointer(obj) {
1716
- const pointer = this.pointer(obj);
1717
- return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_scholarshipsapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1718
- },
1719
- freePointer(pointer) {
1720
- uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_scholarshipsapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1721
- },
1722
- isConcreteType(obj) {
1723
- return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'ScholarshipsApplicationBuilder';
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
- create(pointer) {
1934
- const instance = Object.create(StudentInformationApplication.prototype);
1935
- instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
1936
- instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
1937
- instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'StudentInformationApplication';
1938
- return instance;
1939
- },
1940
- bless(p) {
1941
- return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_studentinformationapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
1942
- },
1943
- unbless(ptr) {
1944
- ptr.markDestroyed();
1945
- },
1946
- pointer(obj) {
1947
- if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
1948
- throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
1949
- }
1950
- return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
1951
- },
1952
- clonePointer(obj) {
1953
- const pointer = this.pointer(obj);
1954
- return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_studentinformationapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1955
- },
1956
- freePointer(pointer) {
1957
- uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_studentinformationapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1958
- },
1959
- isConcreteType(obj) {
1960
- return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'StudentInformationApplication';
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
- create(pointer) {
2023
- const instance = Object.create(StudentInformationApplicationBuilder.prototype);
2024
- instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
2025
- instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
2026
- instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'StudentInformationApplicationBuilder';
2027
- return instance;
2028
- },
2029
- bless(p) {
2030
- return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_studentinformationapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
2031
- },
2032
- unbless(ptr) {
2033
- ptr.markDestroyed();
2034
- },
2035
- pointer(obj) {
2036
- if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
2037
- throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
2038
- }
2039
- return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
2040
- },
2041
- clonePointer(obj) {
2042
- const pointer = this.pointer(obj);
2043
- return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_studentinformationapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
2044
- },
2045
- freePointer(pointer) {
2046
- uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_studentinformationapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
2047
- },
2048
- isConcreteType(obj) {
2049
- return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'StudentInformationApplicationBuilder';
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
- create(pointer) {
2092
- const instance = Object.create(USaintSession.prototype);
2093
- instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
2094
- instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
2095
- instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'USaintSession';
2096
- return instance;
2097
- },
2098
- bless(p) {
2099
- return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_usaintsession_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
2100
- },
2101
- unbless(ptr) {
2102
- ptr.markDestroyed();
2103
- },
2104
- pointer(obj) {
2105
- if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
2106
- throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
2107
- }
2108
- return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
2109
- },
2110
- clonePointer(obj) {
2111
- const pointer = this.pointer(obj);
2112
- return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_usaintsession(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
2113
- },
2114
- freePointer(pointer) {
2115
- uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_usaintsession(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
2116
- },
2117
- isConcreteType(obj) {
2118
- return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'USaintSession';
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
- create(pointer) {
2223
- const instance = Object.create(USaintSessionBuilder.prototype);
2224
- instance[_uniffiBindgenReactNative.pointerLiteralSymbol] = pointer;
2225
- instance[_uniffiBindgenReactNative.destructorGuardSymbol] = this.bless(pointer);
2226
- instance[_uniffiBindgenReactNative.uniffiTypeNameSymbol] = 'USaintSessionBuilder';
2227
- return instance;
2228
- },
2229
- bless(p) {
2230
- return uniffiCaller.rustCall(/*caller:*/status => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_internal_fn_method_usaintsessionbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
2231
- },
2232
- unbless(ptr) {
2233
- ptr.markDestroyed();
2234
- },
2235
- pointer(obj) {
2236
- if (obj[_uniffiBindgenReactNative.destructorGuardSymbol] === undefined) {
2237
- throw new _uniffiBindgenReactNative.UniffiInternalError.UnexpectedNullPointer();
2238
- }
2239
- return obj[_uniffiBindgenReactNative.pointerLiteralSymbol];
2240
- },
2241
- clonePointer(obj) {
2242
- const pointer = this.pointer(obj);
2243
- return uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_clone_usaintsessionbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
2244
- },
2245
- freePointer(pointer) {
2246
- uniffiCaller.rustCall(/*caller:*/callStatus => (0, _rusaint_ffiFfi.default)().ubrn_uniffi_rusaint_ffi_fn_free_usaintsessionbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
2247
- },
2248
- isConcreteType(obj) {
2249
- return obj[_uniffiBindgenReactNative.destructorGuardSymbol] && obj[_uniffiBindgenReactNative.uniffiTypeNameSymbol] === 'USaintSessionBuilder';
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,