@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
@@ -32,7 +32,9 @@ const {
32
32
  FfiConverterTypeStudentTransferRecords,
33
33
  FfiConverterTypeStudentWorkInformation
34
34
  } = uniffiRusaintModule.converters;
35
- const uniffiCaller = new UniffiRustCaller();
35
+ const uniffiCaller = new UniffiRustCaller(() => ({
36
+ code: 0
37
+ }));
36
38
  const uniffiIsDebug =
37
39
  // @ts-ignore -- The process global might not be defined
38
40
  typeof process !== 'object' ||
@@ -228,37 +230,39 @@ export class ChapelApplication extends UniffiAbstractObject {
228
230
  return uniffiTypeChapelApplicationObjectFactory.isConcreteType(obj);
229
231
  }
230
232
  }
231
- const uniffiTypeChapelApplicationObjectFactory = {
232
- create(pointer) {
233
- const instance = Object.create(ChapelApplication.prototype);
234
- instance[pointerLiteralSymbol] = pointer;
235
- instance[destructorGuardSymbol] = this.bless(pointer);
236
- instance[uniffiTypeNameSymbol] = 'ChapelApplication';
237
- return instance;
238
- },
239
- bless(p) {
240
- return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_chapelapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
241
- },
242
- unbless(ptr) {
243
- ptr.markDestroyed();
244
- },
245
- pointer(obj) {
246
- if (obj[destructorGuardSymbol] === undefined) {
247
- throw new UniffiInternalError.UnexpectedNullPointer();
248
- }
249
- return obj[pointerLiteralSymbol];
250
- },
251
- clonePointer(obj) {
252
- const pointer = this.pointer(obj);
253
- return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_chapelapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
254
- },
255
- freePointer(pointer) {
256
- uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_chapelapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
257
- },
258
- isConcreteType(obj) {
259
- return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'ChapelApplication';
260
- }
261
- };
233
+ const uniffiTypeChapelApplicationObjectFactory = (() => {
234
+ return {
235
+ create(pointer) {
236
+ const instance = Object.create(ChapelApplication.prototype);
237
+ instance[pointerLiteralSymbol] = pointer;
238
+ instance[destructorGuardSymbol] = this.bless(pointer);
239
+ instance[uniffiTypeNameSymbol] = 'ChapelApplication';
240
+ return instance;
241
+ },
242
+ bless(p) {
243
+ return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_chapelapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
244
+ },
245
+ unbless(ptr) {
246
+ ptr.markDestroyed();
247
+ },
248
+ pointer(obj) {
249
+ if (obj[destructorGuardSymbol] === undefined) {
250
+ throw new UniffiInternalError.UnexpectedNullPointer();
251
+ }
252
+ return obj[pointerLiteralSymbol];
253
+ },
254
+ clonePointer(obj) {
255
+ const pointer = this.pointer(obj);
256
+ return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_chapelapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
257
+ },
258
+ freePointer(pointer) {
259
+ uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_chapelapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
260
+ },
261
+ isConcreteType(obj) {
262
+ return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'ChapelApplication';
263
+ }
264
+ };
265
+ })();
262
266
  // FfiConverter for ChapelApplicationInterface
263
267
  const FfiConverterTypeChapelApplication = new FfiConverterObject(uniffiTypeChapelApplicationObjectFactory);
264
268
 
@@ -316,37 +320,39 @@ export class ChapelApplicationBuilder extends UniffiAbstractObject {
316
320
  return uniffiTypeChapelApplicationBuilderObjectFactory.isConcreteType(obj);
317
321
  }
318
322
  }
319
- const uniffiTypeChapelApplicationBuilderObjectFactory = {
320
- create(pointer) {
321
- const instance = Object.create(ChapelApplicationBuilder.prototype);
322
- instance[pointerLiteralSymbol] = pointer;
323
- instance[destructorGuardSymbol] = this.bless(pointer);
324
- instance[uniffiTypeNameSymbol] = 'ChapelApplicationBuilder';
325
- return instance;
326
- },
327
- bless(p) {
328
- return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_chapelapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
329
- },
330
- unbless(ptr) {
331
- ptr.markDestroyed();
332
- },
333
- pointer(obj) {
334
- if (obj[destructorGuardSymbol] === undefined) {
335
- throw new UniffiInternalError.UnexpectedNullPointer();
336
- }
337
- return obj[pointerLiteralSymbol];
338
- },
339
- clonePointer(obj) {
340
- const pointer = this.pointer(obj);
341
- return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_chapelapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
342
- },
343
- freePointer(pointer) {
344
- uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_chapelapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
345
- },
346
- isConcreteType(obj) {
347
- return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'ChapelApplicationBuilder';
348
- }
349
- };
323
+ const uniffiTypeChapelApplicationBuilderObjectFactory = (() => {
324
+ return {
325
+ create(pointer) {
326
+ const instance = Object.create(ChapelApplicationBuilder.prototype);
327
+ instance[pointerLiteralSymbol] = pointer;
328
+ instance[destructorGuardSymbol] = this.bless(pointer);
329
+ instance[uniffiTypeNameSymbol] = 'ChapelApplicationBuilder';
330
+ return instance;
331
+ },
332
+ bless(p) {
333
+ return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_chapelapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
334
+ },
335
+ unbless(ptr) {
336
+ ptr.markDestroyed();
337
+ },
338
+ pointer(obj) {
339
+ if (obj[destructorGuardSymbol] === undefined) {
340
+ throw new UniffiInternalError.UnexpectedNullPointer();
341
+ }
342
+ return obj[pointerLiteralSymbol];
343
+ },
344
+ clonePointer(obj) {
345
+ const pointer = this.pointer(obj);
346
+ return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_chapelapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
347
+ },
348
+ freePointer(pointer) {
349
+ uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_chapelapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
350
+ },
351
+ isConcreteType(obj) {
352
+ return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'ChapelApplicationBuilder';
353
+ }
354
+ };
355
+ })();
350
356
  // FfiConverter for ChapelApplicationBuilderInterface
351
357
  const FfiConverterTypeChapelApplicationBuilder = new FfiConverterObject(uniffiTypeChapelApplicationBuilderObjectFactory);
352
358
 
@@ -488,37 +494,39 @@ export class CourseGradesApplication extends UniffiAbstractObject {
488
494
  return uniffiTypeCourseGradesApplicationObjectFactory.isConcreteType(obj);
489
495
  }
490
496
  }
491
- const uniffiTypeCourseGradesApplicationObjectFactory = {
492
- create(pointer) {
493
- const instance = Object.create(CourseGradesApplication.prototype);
494
- instance[pointerLiteralSymbol] = pointer;
495
- instance[destructorGuardSymbol] = this.bless(pointer);
496
- instance[uniffiTypeNameSymbol] = 'CourseGradesApplication';
497
- return instance;
498
- },
499
- bless(p) {
500
- return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_coursegradesapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
501
- },
502
- unbless(ptr) {
503
- ptr.markDestroyed();
504
- },
505
- pointer(obj) {
506
- if (obj[destructorGuardSymbol] === undefined) {
507
- throw new UniffiInternalError.UnexpectedNullPointer();
508
- }
509
- return obj[pointerLiteralSymbol];
510
- },
511
- clonePointer(obj) {
512
- const pointer = this.pointer(obj);
513
- return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_coursegradesapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
514
- },
515
- freePointer(pointer) {
516
- uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_coursegradesapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
517
- },
518
- isConcreteType(obj) {
519
- return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'CourseGradesApplication';
520
- }
521
- };
497
+ const uniffiTypeCourseGradesApplicationObjectFactory = (() => {
498
+ return {
499
+ create(pointer) {
500
+ const instance = Object.create(CourseGradesApplication.prototype);
501
+ instance[pointerLiteralSymbol] = pointer;
502
+ instance[destructorGuardSymbol] = this.bless(pointer);
503
+ instance[uniffiTypeNameSymbol] = 'CourseGradesApplication';
504
+ return instance;
505
+ },
506
+ bless(p) {
507
+ return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_coursegradesapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
508
+ },
509
+ unbless(ptr) {
510
+ ptr.markDestroyed();
511
+ },
512
+ pointer(obj) {
513
+ if (obj[destructorGuardSymbol] === undefined) {
514
+ throw new UniffiInternalError.UnexpectedNullPointer();
515
+ }
516
+ return obj[pointerLiteralSymbol];
517
+ },
518
+ clonePointer(obj) {
519
+ const pointer = this.pointer(obj);
520
+ return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_coursegradesapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
521
+ },
522
+ freePointer(pointer) {
523
+ uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_coursegradesapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
524
+ },
525
+ isConcreteType(obj) {
526
+ return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'CourseGradesApplication';
527
+ }
528
+ };
529
+ })();
522
530
  // FfiConverter for CourseGradesApplicationInterface
523
531
  const FfiConverterTypeCourseGradesApplication = new FfiConverterObject(uniffiTypeCourseGradesApplicationObjectFactory);
524
532
 
@@ -576,37 +584,39 @@ export class CourseGradesApplicationBuilder extends UniffiAbstractObject {
576
584
  return uniffiTypeCourseGradesApplicationBuilderObjectFactory.isConcreteType(obj);
577
585
  }
578
586
  }
579
- const uniffiTypeCourseGradesApplicationBuilderObjectFactory = {
580
- create(pointer) {
581
- const instance = Object.create(CourseGradesApplicationBuilder.prototype);
582
- instance[pointerLiteralSymbol] = pointer;
583
- instance[destructorGuardSymbol] = this.bless(pointer);
584
- instance[uniffiTypeNameSymbol] = 'CourseGradesApplicationBuilder';
585
- return instance;
586
- },
587
- bless(p) {
588
- return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_coursegradesapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
589
- },
590
- unbless(ptr) {
591
- ptr.markDestroyed();
592
- },
593
- pointer(obj) {
594
- if (obj[destructorGuardSymbol] === undefined) {
595
- throw new UniffiInternalError.UnexpectedNullPointer();
596
- }
597
- return obj[pointerLiteralSymbol];
598
- },
599
- clonePointer(obj) {
600
- const pointer = this.pointer(obj);
601
- return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_coursegradesapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
602
- },
603
- freePointer(pointer) {
604
- uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_coursegradesapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
605
- },
606
- isConcreteType(obj) {
607
- return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'CourseGradesApplicationBuilder';
608
- }
609
- };
587
+ const uniffiTypeCourseGradesApplicationBuilderObjectFactory = (() => {
588
+ return {
589
+ create(pointer) {
590
+ const instance = Object.create(CourseGradesApplicationBuilder.prototype);
591
+ instance[pointerLiteralSymbol] = pointer;
592
+ instance[destructorGuardSymbol] = this.bless(pointer);
593
+ instance[uniffiTypeNameSymbol] = 'CourseGradesApplicationBuilder';
594
+ return instance;
595
+ },
596
+ bless(p) {
597
+ return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_coursegradesapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
598
+ },
599
+ unbless(ptr) {
600
+ ptr.markDestroyed();
601
+ },
602
+ pointer(obj) {
603
+ if (obj[destructorGuardSymbol] === undefined) {
604
+ throw new UniffiInternalError.UnexpectedNullPointer();
605
+ }
606
+ return obj[pointerLiteralSymbol];
607
+ },
608
+ clonePointer(obj) {
609
+ const pointer = this.pointer(obj);
610
+ return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_coursegradesapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
611
+ },
612
+ freePointer(pointer) {
613
+ uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_coursegradesapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
614
+ },
615
+ isConcreteType(obj) {
616
+ return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'CourseGradesApplicationBuilder';
617
+ }
618
+ };
619
+ })();
610
620
  // FfiConverter for CourseGradesApplicationBuilderInterface
611
621
  const FfiConverterTypeCourseGradesApplicationBuilder = new FfiConverterObject(uniffiTypeCourseGradesApplicationBuilderObjectFactory);
612
622
 
@@ -847,37 +857,39 @@ export class CourseScheduleApplication extends UniffiAbstractObject {
847
857
  return uniffiTypeCourseScheduleApplicationObjectFactory.isConcreteType(obj);
848
858
  }
849
859
  }
850
- const uniffiTypeCourseScheduleApplicationObjectFactory = {
851
- create(pointer) {
852
- const instance = Object.create(CourseScheduleApplication.prototype);
853
- instance[pointerLiteralSymbol] = pointer;
854
- instance[destructorGuardSymbol] = this.bless(pointer);
855
- instance[uniffiTypeNameSymbol] = 'CourseScheduleApplication';
856
- return instance;
857
- },
858
- bless(p) {
859
- return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_coursescheduleapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
860
- },
861
- unbless(ptr) {
862
- ptr.markDestroyed();
863
- },
864
- pointer(obj) {
865
- if (obj[destructorGuardSymbol] === undefined) {
866
- throw new UniffiInternalError.UnexpectedNullPointer();
867
- }
868
- return obj[pointerLiteralSymbol];
869
- },
870
- clonePointer(obj) {
871
- const pointer = this.pointer(obj);
872
- return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_coursescheduleapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
873
- },
874
- freePointer(pointer) {
875
- uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_coursescheduleapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
876
- },
877
- isConcreteType(obj) {
878
- return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'CourseScheduleApplication';
879
- }
880
- };
860
+ const uniffiTypeCourseScheduleApplicationObjectFactory = (() => {
861
+ return {
862
+ create(pointer) {
863
+ const instance = Object.create(CourseScheduleApplication.prototype);
864
+ instance[pointerLiteralSymbol] = pointer;
865
+ instance[destructorGuardSymbol] = this.bless(pointer);
866
+ instance[uniffiTypeNameSymbol] = 'CourseScheduleApplication';
867
+ return instance;
868
+ },
869
+ bless(p) {
870
+ return uniffiCaller.rustCall(/*caller:*/status => nativeModule().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[destructorGuardSymbol] === undefined) {
877
+ throw new UniffiInternalError.UnexpectedNullPointer();
878
+ }
879
+ return obj[pointerLiteralSymbol];
880
+ },
881
+ clonePointer(obj) {
882
+ const pointer = this.pointer(obj);
883
+ return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_coursescheduleapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
884
+ },
885
+ freePointer(pointer) {
886
+ uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_coursescheduleapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
887
+ },
888
+ isConcreteType(obj) {
889
+ return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'CourseScheduleApplication';
890
+ }
891
+ };
892
+ })();
881
893
  // FfiConverter for CourseScheduleApplicationInterface
882
894
  const FfiConverterTypeCourseScheduleApplication = new FfiConverterObject(uniffiTypeCourseScheduleApplicationObjectFactory);
883
895
 
@@ -935,37 +947,39 @@ export class CourseScheduleApplicationBuilder extends UniffiAbstractObject {
935
947
  return uniffiTypeCourseScheduleApplicationBuilderObjectFactory.isConcreteType(obj);
936
948
  }
937
949
  }
938
- const uniffiTypeCourseScheduleApplicationBuilderObjectFactory = {
939
- create(pointer) {
940
- const instance = Object.create(CourseScheduleApplicationBuilder.prototype);
941
- instance[pointerLiteralSymbol] = pointer;
942
- instance[destructorGuardSymbol] = this.bless(pointer);
943
- instance[uniffiTypeNameSymbol] = 'CourseScheduleApplicationBuilder';
944
- return instance;
945
- },
946
- bless(p) {
947
- return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_coursescheduleapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
948
- },
949
- unbless(ptr) {
950
- ptr.markDestroyed();
951
- },
952
- pointer(obj) {
953
- if (obj[destructorGuardSymbol] === undefined) {
954
- throw new UniffiInternalError.UnexpectedNullPointer();
955
- }
956
- return obj[pointerLiteralSymbol];
957
- },
958
- clonePointer(obj) {
959
- const pointer = this.pointer(obj);
960
- return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_coursescheduleapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
961
- },
962
- freePointer(pointer) {
963
- uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_coursescheduleapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
964
- },
965
- isConcreteType(obj) {
966
- return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'CourseScheduleApplicationBuilder';
967
- }
968
- };
950
+ const uniffiTypeCourseScheduleApplicationBuilderObjectFactory = (() => {
951
+ return {
952
+ create(pointer) {
953
+ const instance = Object.create(CourseScheduleApplicationBuilder.prototype);
954
+ instance[pointerLiteralSymbol] = pointer;
955
+ instance[destructorGuardSymbol] = this.bless(pointer);
956
+ instance[uniffiTypeNameSymbol] = 'CourseScheduleApplicationBuilder';
957
+ return instance;
958
+ },
959
+ bless(p) {
960
+ return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_coursescheduleapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
961
+ },
962
+ unbless(ptr) {
963
+ ptr.markDestroyed();
964
+ },
965
+ pointer(obj) {
966
+ if (obj[destructorGuardSymbol] === undefined) {
967
+ throw new UniffiInternalError.UnexpectedNullPointer();
968
+ }
969
+ return obj[pointerLiteralSymbol];
970
+ },
971
+ clonePointer(obj) {
972
+ const pointer = this.pointer(obj);
973
+ return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_coursescheduleapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
974
+ },
975
+ freePointer(pointer) {
976
+ uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_coursescheduleapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
977
+ },
978
+ isConcreteType(obj) {
979
+ return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'CourseScheduleApplicationBuilder';
980
+ }
981
+ };
982
+ })();
969
983
  // FfiConverter for CourseScheduleApplicationBuilderInterface
970
984
  const FfiConverterTypeCourseScheduleApplicationBuilder = new FfiConverterObject(uniffiTypeCourseScheduleApplicationBuilderObjectFactory);
971
985
 
@@ -1035,37 +1049,39 @@ export class GraduationRequirementsApplication extends UniffiAbstractObject {
1035
1049
  return uniffiTypeGraduationRequirementsApplicationObjectFactory.isConcreteType(obj);
1036
1050
  }
1037
1051
  }
1038
- const uniffiTypeGraduationRequirementsApplicationObjectFactory = {
1039
- create(pointer) {
1040
- const instance = Object.create(GraduationRequirementsApplication.prototype);
1041
- instance[pointerLiteralSymbol] = pointer;
1042
- instance[destructorGuardSymbol] = this.bless(pointer);
1043
- instance[uniffiTypeNameSymbol] = 'GraduationRequirementsApplication';
1044
- return instance;
1045
- },
1046
- bless(p) {
1047
- return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_graduationrequirementsapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
1048
- },
1049
- unbless(ptr) {
1050
- ptr.markDestroyed();
1051
- },
1052
- pointer(obj) {
1053
- if (obj[destructorGuardSymbol] === undefined) {
1054
- throw new UniffiInternalError.UnexpectedNullPointer();
1055
- }
1056
- return obj[pointerLiteralSymbol];
1057
- },
1058
- clonePointer(obj) {
1059
- const pointer = this.pointer(obj);
1060
- return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_graduationrequirementsapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1061
- },
1062
- freePointer(pointer) {
1063
- uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_graduationrequirementsapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1064
- },
1065
- isConcreteType(obj) {
1066
- return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'GraduationRequirementsApplication';
1067
- }
1068
- };
1052
+ const uniffiTypeGraduationRequirementsApplicationObjectFactory = (() => {
1053
+ return {
1054
+ create(pointer) {
1055
+ const instance = Object.create(GraduationRequirementsApplication.prototype);
1056
+ instance[pointerLiteralSymbol] = pointer;
1057
+ instance[destructorGuardSymbol] = this.bless(pointer);
1058
+ instance[uniffiTypeNameSymbol] = 'GraduationRequirementsApplication';
1059
+ return instance;
1060
+ },
1061
+ bless(p) {
1062
+ return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_graduationrequirementsapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
1063
+ },
1064
+ unbless(ptr) {
1065
+ ptr.markDestroyed();
1066
+ },
1067
+ pointer(obj) {
1068
+ if (obj[destructorGuardSymbol] === undefined) {
1069
+ throw new UniffiInternalError.UnexpectedNullPointer();
1070
+ }
1071
+ return obj[pointerLiteralSymbol];
1072
+ },
1073
+ clonePointer(obj) {
1074
+ const pointer = this.pointer(obj);
1075
+ return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_graduationrequirementsapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1076
+ },
1077
+ freePointer(pointer) {
1078
+ uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_graduationrequirementsapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1079
+ },
1080
+ isConcreteType(obj) {
1081
+ return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'GraduationRequirementsApplication';
1082
+ }
1083
+ };
1084
+ })();
1069
1085
  // FfiConverter for GraduationRequirementsApplicationInterface
1070
1086
  const FfiConverterTypeGraduationRequirementsApplication = new FfiConverterObject(uniffiTypeGraduationRequirementsApplicationObjectFactory);
1071
1087
 
@@ -1123,37 +1139,39 @@ export class GraduationRequirementsApplicationBuilder extends UniffiAbstractObje
1123
1139
  return uniffiTypeGraduationRequirementsApplicationBuilderObjectFactory.isConcreteType(obj);
1124
1140
  }
1125
1141
  }
1126
- const uniffiTypeGraduationRequirementsApplicationBuilderObjectFactory = {
1127
- create(pointer) {
1128
- const instance = Object.create(GraduationRequirementsApplicationBuilder.prototype);
1129
- instance[pointerLiteralSymbol] = pointer;
1130
- instance[destructorGuardSymbol] = this.bless(pointer);
1131
- instance[uniffiTypeNameSymbol] = 'GraduationRequirementsApplicationBuilder';
1132
- return instance;
1133
- },
1134
- bless(p) {
1135
- return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_graduationrequirementsapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
1136
- },
1137
- unbless(ptr) {
1138
- ptr.markDestroyed();
1139
- },
1140
- pointer(obj) {
1141
- if (obj[destructorGuardSymbol] === undefined) {
1142
- throw new UniffiInternalError.UnexpectedNullPointer();
1143
- }
1144
- return obj[pointerLiteralSymbol];
1145
- },
1146
- clonePointer(obj) {
1147
- const pointer = this.pointer(obj);
1148
- return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_graduationrequirementsapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1149
- },
1150
- freePointer(pointer) {
1151
- uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_graduationrequirementsapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1152
- },
1153
- isConcreteType(obj) {
1154
- return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'GraduationRequirementsApplicationBuilder';
1155
- }
1156
- };
1142
+ const uniffiTypeGraduationRequirementsApplicationBuilderObjectFactory = (() => {
1143
+ return {
1144
+ create(pointer) {
1145
+ const instance = Object.create(GraduationRequirementsApplicationBuilder.prototype);
1146
+ instance[pointerLiteralSymbol] = pointer;
1147
+ instance[destructorGuardSymbol] = this.bless(pointer);
1148
+ instance[uniffiTypeNameSymbol] = 'GraduationRequirementsApplicationBuilder';
1149
+ return instance;
1150
+ },
1151
+ bless(p) {
1152
+ return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_graduationrequirementsapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
1153
+ },
1154
+ unbless(ptr) {
1155
+ ptr.markDestroyed();
1156
+ },
1157
+ pointer(obj) {
1158
+ if (obj[destructorGuardSymbol] === undefined) {
1159
+ throw new UniffiInternalError.UnexpectedNullPointer();
1160
+ }
1161
+ return obj[pointerLiteralSymbol];
1162
+ },
1163
+ clonePointer(obj) {
1164
+ const pointer = this.pointer(obj);
1165
+ return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_graduationrequirementsapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1166
+ },
1167
+ freePointer(pointer) {
1168
+ uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_graduationrequirementsapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1169
+ },
1170
+ isConcreteType(obj) {
1171
+ return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'GraduationRequirementsApplicationBuilder';
1172
+ }
1173
+ };
1174
+ })();
1157
1175
  // FfiConverter for GraduationRequirementsApplicationBuilderInterface
1158
1176
  const FfiConverterTypeGraduationRequirementsApplicationBuilder = new FfiConverterObject(uniffiTypeGraduationRequirementsApplicationBuilderObjectFactory);
1159
1177
 
@@ -1224,37 +1242,39 @@ export class LectureAssessmentApplication extends UniffiAbstractObject {
1224
1242
  return uniffiTypeLectureAssessmentApplicationObjectFactory.isConcreteType(obj);
1225
1243
  }
1226
1244
  }
1227
- const uniffiTypeLectureAssessmentApplicationObjectFactory = {
1228
- create(pointer) {
1229
- const instance = Object.create(LectureAssessmentApplication.prototype);
1230
- instance[pointerLiteralSymbol] = pointer;
1231
- instance[destructorGuardSymbol] = this.bless(pointer);
1232
- instance[uniffiTypeNameSymbol] = 'LectureAssessmentApplication';
1233
- return instance;
1234
- },
1235
- bless(p) {
1236
- return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_lectureassessmentapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
1237
- },
1238
- unbless(ptr) {
1239
- ptr.markDestroyed();
1240
- },
1241
- pointer(obj) {
1242
- if (obj[destructorGuardSymbol] === undefined) {
1243
- throw new UniffiInternalError.UnexpectedNullPointer();
1244
- }
1245
- return obj[pointerLiteralSymbol];
1246
- },
1247
- clonePointer(obj) {
1248
- const pointer = this.pointer(obj);
1249
- return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_lectureassessmentapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1250
- },
1251
- freePointer(pointer) {
1252
- uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_lectureassessmentapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1253
- },
1254
- isConcreteType(obj) {
1255
- return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'LectureAssessmentApplication';
1256
- }
1257
- };
1245
+ const uniffiTypeLectureAssessmentApplicationObjectFactory = (() => {
1246
+ return {
1247
+ create(pointer) {
1248
+ const instance = Object.create(LectureAssessmentApplication.prototype);
1249
+ instance[pointerLiteralSymbol] = pointer;
1250
+ instance[destructorGuardSymbol] = this.bless(pointer);
1251
+ instance[uniffiTypeNameSymbol] = 'LectureAssessmentApplication';
1252
+ return instance;
1253
+ },
1254
+ bless(p) {
1255
+ return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_lectureassessmentapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
1256
+ },
1257
+ unbless(ptr) {
1258
+ ptr.markDestroyed();
1259
+ },
1260
+ pointer(obj) {
1261
+ if (obj[destructorGuardSymbol] === undefined) {
1262
+ throw new UniffiInternalError.UnexpectedNullPointer();
1263
+ }
1264
+ return obj[pointerLiteralSymbol];
1265
+ },
1266
+ clonePointer(obj) {
1267
+ const pointer = this.pointer(obj);
1268
+ return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_lectureassessmentapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1269
+ },
1270
+ freePointer(pointer) {
1271
+ uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_lectureassessmentapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1272
+ },
1273
+ isConcreteType(obj) {
1274
+ return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'LectureAssessmentApplication';
1275
+ }
1276
+ };
1277
+ })();
1258
1278
  // FfiConverter for LectureAssessmentApplicationInterface
1259
1279
  const FfiConverterTypeLectureAssessmentApplication = new FfiConverterObject(uniffiTypeLectureAssessmentApplicationObjectFactory);
1260
1280
 
@@ -1312,37 +1332,39 @@ export class LectureAssessmentApplicationBuilder extends UniffiAbstractObject {
1312
1332
  return uniffiTypeLectureAssessmentApplicationBuilderObjectFactory.isConcreteType(obj);
1313
1333
  }
1314
1334
  }
1315
- const uniffiTypeLectureAssessmentApplicationBuilderObjectFactory = {
1316
- create(pointer) {
1317
- const instance = Object.create(LectureAssessmentApplicationBuilder.prototype);
1318
- instance[pointerLiteralSymbol] = pointer;
1319
- instance[destructorGuardSymbol] = this.bless(pointer);
1320
- instance[uniffiTypeNameSymbol] = 'LectureAssessmentApplicationBuilder';
1321
- return instance;
1322
- },
1323
- bless(p) {
1324
- return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_lectureassessmentapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
1325
- },
1326
- unbless(ptr) {
1327
- ptr.markDestroyed();
1328
- },
1329
- pointer(obj) {
1330
- if (obj[destructorGuardSymbol] === undefined) {
1331
- throw new UniffiInternalError.UnexpectedNullPointer();
1332
- }
1333
- return obj[pointerLiteralSymbol];
1334
- },
1335
- clonePointer(obj) {
1336
- const pointer = this.pointer(obj);
1337
- return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_lectureassessmentapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1338
- },
1339
- freePointer(pointer) {
1340
- uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_lectureassessmentapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1341
- },
1342
- isConcreteType(obj) {
1343
- return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'LectureAssessmentApplicationBuilder';
1344
- }
1345
- };
1335
+ const uniffiTypeLectureAssessmentApplicationBuilderObjectFactory = (() => {
1336
+ return {
1337
+ create(pointer) {
1338
+ const instance = Object.create(LectureAssessmentApplicationBuilder.prototype);
1339
+ instance[pointerLiteralSymbol] = pointer;
1340
+ instance[destructorGuardSymbol] = this.bless(pointer);
1341
+ instance[uniffiTypeNameSymbol] = 'LectureAssessmentApplicationBuilder';
1342
+ return instance;
1343
+ },
1344
+ bless(p) {
1345
+ return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_lectureassessmentapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
1346
+ },
1347
+ unbless(ptr) {
1348
+ ptr.markDestroyed();
1349
+ },
1350
+ pointer(obj) {
1351
+ if (obj[destructorGuardSymbol] === undefined) {
1352
+ throw new UniffiInternalError.UnexpectedNullPointer();
1353
+ }
1354
+ return obj[pointerLiteralSymbol];
1355
+ },
1356
+ clonePointer(obj) {
1357
+ const pointer = this.pointer(obj);
1358
+ return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_lectureassessmentapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1359
+ },
1360
+ freePointer(pointer) {
1361
+ uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_lectureassessmentapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1362
+ },
1363
+ isConcreteType(obj) {
1364
+ return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'LectureAssessmentApplicationBuilder';
1365
+ }
1366
+ };
1367
+ })();
1346
1368
  // FfiConverter for LectureAssessmentApplicationBuilderInterface
1347
1369
  const FfiConverterTypeLectureAssessmentApplicationBuilder = new FfiConverterObject(uniffiTypeLectureAssessmentApplicationBuilderObjectFactory);
1348
1370
 
@@ -1413,37 +1435,39 @@ export class PersonalCourseScheduleApplication extends UniffiAbstractObject {
1413
1435
  return uniffiTypePersonalCourseScheduleApplicationObjectFactory.isConcreteType(obj);
1414
1436
  }
1415
1437
  }
1416
- const uniffiTypePersonalCourseScheduleApplicationObjectFactory = {
1417
- create(pointer) {
1418
- const instance = Object.create(PersonalCourseScheduleApplication.prototype);
1419
- instance[pointerLiteralSymbol] = pointer;
1420
- instance[destructorGuardSymbol] = this.bless(pointer);
1421
- instance[uniffiTypeNameSymbol] = 'PersonalCourseScheduleApplication';
1422
- return instance;
1423
- },
1424
- bless(p) {
1425
- return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_personalcoursescheduleapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
1426
- },
1427
- unbless(ptr) {
1428
- ptr.markDestroyed();
1429
- },
1430
- pointer(obj) {
1431
- if (obj[destructorGuardSymbol] === undefined) {
1432
- throw new UniffiInternalError.UnexpectedNullPointer();
1433
- }
1434
- return obj[pointerLiteralSymbol];
1435
- },
1436
- clonePointer(obj) {
1437
- const pointer = this.pointer(obj);
1438
- return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_personalcoursescheduleapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1439
- },
1440
- freePointer(pointer) {
1441
- uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_personalcoursescheduleapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1442
- },
1443
- isConcreteType(obj) {
1444
- return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'PersonalCourseScheduleApplication';
1445
- }
1446
- };
1438
+ const uniffiTypePersonalCourseScheduleApplicationObjectFactory = (() => {
1439
+ return {
1440
+ create(pointer) {
1441
+ const instance = Object.create(PersonalCourseScheduleApplication.prototype);
1442
+ instance[pointerLiteralSymbol] = pointer;
1443
+ instance[destructorGuardSymbol] = this.bless(pointer);
1444
+ instance[uniffiTypeNameSymbol] = 'PersonalCourseScheduleApplication';
1445
+ return instance;
1446
+ },
1447
+ bless(p) {
1448
+ return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_personalcoursescheduleapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
1449
+ },
1450
+ unbless(ptr) {
1451
+ ptr.markDestroyed();
1452
+ },
1453
+ pointer(obj) {
1454
+ if (obj[destructorGuardSymbol] === undefined) {
1455
+ throw new UniffiInternalError.UnexpectedNullPointer();
1456
+ }
1457
+ return obj[pointerLiteralSymbol];
1458
+ },
1459
+ clonePointer(obj) {
1460
+ const pointer = this.pointer(obj);
1461
+ return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_personalcoursescheduleapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1462
+ },
1463
+ freePointer(pointer) {
1464
+ uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_personalcoursescheduleapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1465
+ },
1466
+ isConcreteType(obj) {
1467
+ return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'PersonalCourseScheduleApplication';
1468
+ }
1469
+ };
1470
+ })();
1447
1471
  // FfiConverter for PersonalCourseScheduleApplicationInterface
1448
1472
  const FfiConverterTypePersonalCourseScheduleApplication = new FfiConverterObject(uniffiTypePersonalCourseScheduleApplicationObjectFactory);
1449
1473
 
@@ -1501,37 +1525,39 @@ export class PersonalCourseScheduleApplicationBuilder extends UniffiAbstractObje
1501
1525
  return uniffiTypePersonalCourseScheduleApplicationBuilderObjectFactory.isConcreteType(obj);
1502
1526
  }
1503
1527
  }
1504
- const uniffiTypePersonalCourseScheduleApplicationBuilderObjectFactory = {
1505
- create(pointer) {
1506
- const instance = Object.create(PersonalCourseScheduleApplicationBuilder.prototype);
1507
- instance[pointerLiteralSymbol] = pointer;
1508
- instance[destructorGuardSymbol] = this.bless(pointer);
1509
- instance[uniffiTypeNameSymbol] = 'PersonalCourseScheduleApplicationBuilder';
1510
- return instance;
1511
- },
1512
- bless(p) {
1513
- return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_personalcoursescheduleapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
1514
- },
1515
- unbless(ptr) {
1516
- ptr.markDestroyed();
1517
- },
1518
- pointer(obj) {
1519
- if (obj[destructorGuardSymbol] === undefined) {
1520
- throw new UniffiInternalError.UnexpectedNullPointer();
1521
- }
1522
- return obj[pointerLiteralSymbol];
1523
- },
1524
- clonePointer(obj) {
1525
- const pointer = this.pointer(obj);
1526
- return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_personalcoursescheduleapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1527
- },
1528
- freePointer(pointer) {
1529
- uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_personalcoursescheduleapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1530
- },
1531
- isConcreteType(obj) {
1532
- return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'PersonalCourseScheduleApplicationBuilder';
1533
- }
1534
- };
1528
+ const uniffiTypePersonalCourseScheduleApplicationBuilderObjectFactory = (() => {
1529
+ return {
1530
+ create(pointer) {
1531
+ const instance = Object.create(PersonalCourseScheduleApplicationBuilder.prototype);
1532
+ instance[pointerLiteralSymbol] = pointer;
1533
+ instance[destructorGuardSymbol] = this.bless(pointer);
1534
+ instance[uniffiTypeNameSymbol] = 'PersonalCourseScheduleApplicationBuilder';
1535
+ return instance;
1536
+ },
1537
+ bless(p) {
1538
+ return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_personalcoursescheduleapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
1539
+ },
1540
+ unbless(ptr) {
1541
+ ptr.markDestroyed();
1542
+ },
1543
+ pointer(obj) {
1544
+ if (obj[destructorGuardSymbol] === undefined) {
1545
+ throw new UniffiInternalError.UnexpectedNullPointer();
1546
+ }
1547
+ return obj[pointerLiteralSymbol];
1548
+ },
1549
+ clonePointer(obj) {
1550
+ const pointer = this.pointer(obj);
1551
+ return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_personalcoursescheduleapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1552
+ },
1553
+ freePointer(pointer) {
1554
+ uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_personalcoursescheduleapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1555
+ },
1556
+ isConcreteType(obj) {
1557
+ return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'PersonalCourseScheduleApplicationBuilder';
1558
+ }
1559
+ };
1560
+ })();
1535
1561
  // FfiConverter for PersonalCourseScheduleApplicationBuilderInterface
1536
1562
  const FfiConverterTypePersonalCourseScheduleApplicationBuilder = new FfiConverterObject(uniffiTypePersonalCourseScheduleApplicationBuilderObjectFactory);
1537
1563
 
@@ -1584,37 +1610,39 @@ export class ScholarshipsApplication extends UniffiAbstractObject {
1584
1610
  return uniffiTypeScholarshipsApplicationObjectFactory.isConcreteType(obj);
1585
1611
  }
1586
1612
  }
1587
- const uniffiTypeScholarshipsApplicationObjectFactory = {
1588
- create(pointer) {
1589
- const instance = Object.create(ScholarshipsApplication.prototype);
1590
- instance[pointerLiteralSymbol] = pointer;
1591
- instance[destructorGuardSymbol] = this.bless(pointer);
1592
- instance[uniffiTypeNameSymbol] = 'ScholarshipsApplication';
1593
- return instance;
1594
- },
1595
- bless(p) {
1596
- return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_scholarshipsapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
1597
- },
1598
- unbless(ptr) {
1599
- ptr.markDestroyed();
1600
- },
1601
- pointer(obj) {
1602
- if (obj[destructorGuardSymbol] === undefined) {
1603
- throw new UniffiInternalError.UnexpectedNullPointer();
1604
- }
1605
- return obj[pointerLiteralSymbol];
1606
- },
1607
- clonePointer(obj) {
1608
- const pointer = this.pointer(obj);
1609
- return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_scholarshipsapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1610
- },
1611
- freePointer(pointer) {
1612
- uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_scholarshipsapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1613
- },
1614
- isConcreteType(obj) {
1615
- return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'ScholarshipsApplication';
1616
- }
1617
- };
1613
+ const uniffiTypeScholarshipsApplicationObjectFactory = (() => {
1614
+ return {
1615
+ create(pointer) {
1616
+ const instance = Object.create(ScholarshipsApplication.prototype);
1617
+ instance[pointerLiteralSymbol] = pointer;
1618
+ instance[destructorGuardSymbol] = this.bless(pointer);
1619
+ instance[uniffiTypeNameSymbol] = 'ScholarshipsApplication';
1620
+ return instance;
1621
+ },
1622
+ bless(p) {
1623
+ return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_scholarshipsapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
1624
+ },
1625
+ unbless(ptr) {
1626
+ ptr.markDestroyed();
1627
+ },
1628
+ pointer(obj) {
1629
+ if (obj[destructorGuardSymbol] === undefined) {
1630
+ throw new UniffiInternalError.UnexpectedNullPointer();
1631
+ }
1632
+ return obj[pointerLiteralSymbol];
1633
+ },
1634
+ clonePointer(obj) {
1635
+ const pointer = this.pointer(obj);
1636
+ return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_scholarshipsapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1637
+ },
1638
+ freePointer(pointer) {
1639
+ uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_scholarshipsapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1640
+ },
1641
+ isConcreteType(obj) {
1642
+ return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'ScholarshipsApplication';
1643
+ }
1644
+ };
1645
+ })();
1618
1646
  // FfiConverter for ScholarshipsApplicationInterface
1619
1647
  const FfiConverterTypeScholarshipsApplication = new FfiConverterObject(uniffiTypeScholarshipsApplicationObjectFactory);
1620
1648
 
@@ -1672,37 +1700,39 @@ export class ScholarshipsApplicationBuilder extends UniffiAbstractObject {
1672
1700
  return uniffiTypeScholarshipsApplicationBuilderObjectFactory.isConcreteType(obj);
1673
1701
  }
1674
1702
  }
1675
- const uniffiTypeScholarshipsApplicationBuilderObjectFactory = {
1676
- create(pointer) {
1677
- const instance = Object.create(ScholarshipsApplicationBuilder.prototype);
1678
- instance[pointerLiteralSymbol] = pointer;
1679
- instance[destructorGuardSymbol] = this.bless(pointer);
1680
- instance[uniffiTypeNameSymbol] = 'ScholarshipsApplicationBuilder';
1681
- return instance;
1682
- },
1683
- bless(p) {
1684
- return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_scholarshipsapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
1685
- },
1686
- unbless(ptr) {
1687
- ptr.markDestroyed();
1688
- },
1689
- pointer(obj) {
1690
- if (obj[destructorGuardSymbol] === undefined) {
1691
- throw new UniffiInternalError.UnexpectedNullPointer();
1692
- }
1693
- return obj[pointerLiteralSymbol];
1694
- },
1695
- clonePointer(obj) {
1696
- const pointer = this.pointer(obj);
1697
- return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_scholarshipsapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1698
- },
1699
- freePointer(pointer) {
1700
- uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_scholarshipsapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1701
- },
1702
- isConcreteType(obj) {
1703
- return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'ScholarshipsApplicationBuilder';
1704
- }
1705
- };
1703
+ const uniffiTypeScholarshipsApplicationBuilderObjectFactory = (() => {
1704
+ return {
1705
+ create(pointer) {
1706
+ const instance = Object.create(ScholarshipsApplicationBuilder.prototype);
1707
+ instance[pointerLiteralSymbol] = pointer;
1708
+ instance[destructorGuardSymbol] = this.bless(pointer);
1709
+ instance[uniffiTypeNameSymbol] = 'ScholarshipsApplicationBuilder';
1710
+ return instance;
1711
+ },
1712
+ bless(p) {
1713
+ return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_scholarshipsapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
1714
+ },
1715
+ unbless(ptr) {
1716
+ ptr.markDestroyed();
1717
+ },
1718
+ pointer(obj) {
1719
+ if (obj[destructorGuardSymbol] === undefined) {
1720
+ throw new UniffiInternalError.UnexpectedNullPointer();
1721
+ }
1722
+ return obj[pointerLiteralSymbol];
1723
+ },
1724
+ clonePointer(obj) {
1725
+ const pointer = this.pointer(obj);
1726
+ return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_scholarshipsapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1727
+ },
1728
+ freePointer(pointer) {
1729
+ uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_scholarshipsapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1730
+ },
1731
+ isConcreteType(obj) {
1732
+ return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'ScholarshipsApplicationBuilder';
1733
+ }
1734
+ };
1735
+ })();
1706
1736
  // FfiConverter for ScholarshipsApplicationBuilderInterface
1707
1737
  const FfiConverterTypeScholarshipsApplicationBuilder = new FfiConverterObject(uniffiTypeScholarshipsApplicationBuilderObjectFactory);
1708
1738
 
@@ -1908,37 +1938,39 @@ export class StudentInformationApplication extends UniffiAbstractObject {
1908
1938
  return uniffiTypeStudentInformationApplicationObjectFactory.isConcreteType(obj);
1909
1939
  }
1910
1940
  }
1911
- const uniffiTypeStudentInformationApplicationObjectFactory = {
1912
- create(pointer) {
1913
- const instance = Object.create(StudentInformationApplication.prototype);
1914
- instance[pointerLiteralSymbol] = pointer;
1915
- instance[destructorGuardSymbol] = this.bless(pointer);
1916
- instance[uniffiTypeNameSymbol] = 'StudentInformationApplication';
1917
- return instance;
1918
- },
1919
- bless(p) {
1920
- return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_studentinformationapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
1921
- },
1922
- unbless(ptr) {
1923
- ptr.markDestroyed();
1924
- },
1925
- pointer(obj) {
1926
- if (obj[destructorGuardSymbol] === undefined) {
1927
- throw new UniffiInternalError.UnexpectedNullPointer();
1928
- }
1929
- return obj[pointerLiteralSymbol];
1930
- },
1931
- clonePointer(obj) {
1932
- const pointer = this.pointer(obj);
1933
- return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_studentinformationapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1934
- },
1935
- freePointer(pointer) {
1936
- uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_studentinformationapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1937
- },
1938
- isConcreteType(obj) {
1939
- return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'StudentInformationApplication';
1940
- }
1941
- };
1941
+ const uniffiTypeStudentInformationApplicationObjectFactory = (() => {
1942
+ return {
1943
+ create(pointer) {
1944
+ const instance = Object.create(StudentInformationApplication.prototype);
1945
+ instance[pointerLiteralSymbol] = pointer;
1946
+ instance[destructorGuardSymbol] = this.bless(pointer);
1947
+ instance[uniffiTypeNameSymbol] = 'StudentInformationApplication';
1948
+ return instance;
1949
+ },
1950
+ bless(p) {
1951
+ return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_studentinformationapplication_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
1952
+ },
1953
+ unbless(ptr) {
1954
+ ptr.markDestroyed();
1955
+ },
1956
+ pointer(obj) {
1957
+ if (obj[destructorGuardSymbol] === undefined) {
1958
+ throw new UniffiInternalError.UnexpectedNullPointer();
1959
+ }
1960
+ return obj[pointerLiteralSymbol];
1961
+ },
1962
+ clonePointer(obj) {
1963
+ const pointer = this.pointer(obj);
1964
+ return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_studentinformationapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1965
+ },
1966
+ freePointer(pointer) {
1967
+ uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_studentinformationapplication(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
1968
+ },
1969
+ isConcreteType(obj) {
1970
+ return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'StudentInformationApplication';
1971
+ }
1972
+ };
1973
+ })();
1942
1974
  // FfiConverter for StudentInformationApplicationInterface
1943
1975
  const FfiConverterTypeStudentInformationApplication = new FfiConverterObject(uniffiTypeStudentInformationApplicationObjectFactory);
1944
1976
 
@@ -1996,37 +2028,39 @@ export class StudentInformationApplicationBuilder extends UniffiAbstractObject {
1996
2028
  return uniffiTypeStudentInformationApplicationBuilderObjectFactory.isConcreteType(obj);
1997
2029
  }
1998
2030
  }
1999
- const uniffiTypeStudentInformationApplicationBuilderObjectFactory = {
2000
- create(pointer) {
2001
- const instance = Object.create(StudentInformationApplicationBuilder.prototype);
2002
- instance[pointerLiteralSymbol] = pointer;
2003
- instance[destructorGuardSymbol] = this.bless(pointer);
2004
- instance[uniffiTypeNameSymbol] = 'StudentInformationApplicationBuilder';
2005
- return instance;
2006
- },
2007
- bless(p) {
2008
- return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_studentinformationapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
2009
- },
2010
- unbless(ptr) {
2011
- ptr.markDestroyed();
2012
- },
2013
- pointer(obj) {
2014
- if (obj[destructorGuardSymbol] === undefined) {
2015
- throw new UniffiInternalError.UnexpectedNullPointer();
2016
- }
2017
- return obj[pointerLiteralSymbol];
2018
- },
2019
- clonePointer(obj) {
2020
- const pointer = this.pointer(obj);
2021
- return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_studentinformationapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
2022
- },
2023
- freePointer(pointer) {
2024
- uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_studentinformationapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
2025
- },
2026
- isConcreteType(obj) {
2027
- return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'StudentInformationApplicationBuilder';
2028
- }
2029
- };
2031
+ const uniffiTypeStudentInformationApplicationBuilderObjectFactory = (() => {
2032
+ return {
2033
+ create(pointer) {
2034
+ const instance = Object.create(StudentInformationApplicationBuilder.prototype);
2035
+ instance[pointerLiteralSymbol] = pointer;
2036
+ instance[destructorGuardSymbol] = this.bless(pointer);
2037
+ instance[uniffiTypeNameSymbol] = 'StudentInformationApplicationBuilder';
2038
+ return instance;
2039
+ },
2040
+ bless(p) {
2041
+ return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_studentinformationapplicationbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
2042
+ },
2043
+ unbless(ptr) {
2044
+ ptr.markDestroyed();
2045
+ },
2046
+ pointer(obj) {
2047
+ if (obj[destructorGuardSymbol] === undefined) {
2048
+ throw new UniffiInternalError.UnexpectedNullPointer();
2049
+ }
2050
+ return obj[pointerLiteralSymbol];
2051
+ },
2052
+ clonePointer(obj) {
2053
+ const pointer = this.pointer(obj);
2054
+ return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_studentinformationapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
2055
+ },
2056
+ freePointer(pointer) {
2057
+ uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_studentinformationapplicationbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
2058
+ },
2059
+ isConcreteType(obj) {
2060
+ return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'StudentInformationApplicationBuilder';
2061
+ }
2062
+ };
2063
+ })();
2030
2064
  // FfiConverter for StudentInformationApplicationBuilderInterface
2031
2065
  const FfiConverterTypeStudentInformationApplicationBuilder = new FfiConverterObject(uniffiTypeStudentInformationApplicationBuilderObjectFactory);
2032
2066
 
@@ -2064,37 +2098,39 @@ export class USaintSession extends UniffiAbstractObject {
2064
2098
  return uniffiTypeUSaintSessionObjectFactory.isConcreteType(obj);
2065
2099
  }
2066
2100
  }
2067
- const uniffiTypeUSaintSessionObjectFactory = {
2068
- create(pointer) {
2069
- const instance = Object.create(USaintSession.prototype);
2070
- instance[pointerLiteralSymbol] = pointer;
2071
- instance[destructorGuardSymbol] = this.bless(pointer);
2072
- instance[uniffiTypeNameSymbol] = 'USaintSession';
2073
- return instance;
2074
- },
2075
- bless(p) {
2076
- return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_usaintsession_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
2077
- },
2078
- unbless(ptr) {
2079
- ptr.markDestroyed();
2080
- },
2081
- pointer(obj) {
2082
- if (obj[destructorGuardSymbol] === undefined) {
2083
- throw new UniffiInternalError.UnexpectedNullPointer();
2084
- }
2085
- return obj[pointerLiteralSymbol];
2086
- },
2087
- clonePointer(obj) {
2088
- const pointer = this.pointer(obj);
2089
- return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_usaintsession(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
2090
- },
2091
- freePointer(pointer) {
2092
- uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_usaintsession(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
2093
- },
2094
- isConcreteType(obj) {
2095
- return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'USaintSession';
2096
- }
2097
- };
2101
+ const uniffiTypeUSaintSessionObjectFactory = (() => {
2102
+ return {
2103
+ create(pointer) {
2104
+ const instance = Object.create(USaintSession.prototype);
2105
+ instance[pointerLiteralSymbol] = pointer;
2106
+ instance[destructorGuardSymbol] = this.bless(pointer);
2107
+ instance[uniffiTypeNameSymbol] = 'USaintSession';
2108
+ return instance;
2109
+ },
2110
+ bless(p) {
2111
+ return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_usaintsession_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
2112
+ },
2113
+ unbless(ptr) {
2114
+ ptr.markDestroyed();
2115
+ },
2116
+ pointer(obj) {
2117
+ if (obj[destructorGuardSymbol] === undefined) {
2118
+ throw new UniffiInternalError.UnexpectedNullPointer();
2119
+ }
2120
+ return obj[pointerLiteralSymbol];
2121
+ },
2122
+ clonePointer(obj) {
2123
+ const pointer = this.pointer(obj);
2124
+ return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_usaintsession(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
2125
+ },
2126
+ freePointer(pointer) {
2127
+ uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_usaintsession(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
2128
+ },
2129
+ isConcreteType(obj) {
2130
+ return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'USaintSession';
2131
+ }
2132
+ };
2133
+ })();
2098
2134
  // FfiConverter for USaintSessionInterface
2099
2135
  const FfiConverterTypeUSaintSession = new FfiConverterObject(uniffiTypeUSaintSessionObjectFactory);
2100
2136
 
@@ -2194,37 +2230,39 @@ export class USaintSessionBuilder extends UniffiAbstractObject {
2194
2230
  return uniffiTypeUSaintSessionBuilderObjectFactory.isConcreteType(obj);
2195
2231
  }
2196
2232
  }
2197
- const uniffiTypeUSaintSessionBuilderObjectFactory = {
2198
- create(pointer) {
2199
- const instance = Object.create(USaintSessionBuilder.prototype);
2200
- instance[pointerLiteralSymbol] = pointer;
2201
- instance[destructorGuardSymbol] = this.bless(pointer);
2202
- instance[uniffiTypeNameSymbol] = 'USaintSessionBuilder';
2203
- return instance;
2204
- },
2205
- bless(p) {
2206
- return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_usaintsessionbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
2207
- },
2208
- unbless(ptr) {
2209
- ptr.markDestroyed();
2210
- },
2211
- pointer(obj) {
2212
- if (obj[destructorGuardSymbol] === undefined) {
2213
- throw new UniffiInternalError.UnexpectedNullPointer();
2214
- }
2215
- return obj[pointerLiteralSymbol];
2216
- },
2217
- clonePointer(obj) {
2218
- const pointer = this.pointer(obj);
2219
- return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_usaintsessionbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
2220
- },
2221
- freePointer(pointer) {
2222
- uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_usaintsessionbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
2223
- },
2224
- isConcreteType(obj) {
2225
- return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'USaintSessionBuilder';
2226
- }
2227
- };
2233
+ const uniffiTypeUSaintSessionBuilderObjectFactory = (() => {
2234
+ return {
2235
+ create(pointer) {
2236
+ const instance = Object.create(USaintSessionBuilder.prototype);
2237
+ instance[pointerLiteralSymbol] = pointer;
2238
+ instance[destructorGuardSymbol] = this.bless(pointer);
2239
+ instance[uniffiTypeNameSymbol] = 'USaintSessionBuilder';
2240
+ return instance;
2241
+ },
2242
+ bless(p) {
2243
+ return uniffiCaller.rustCall(/*caller:*/status => nativeModule().ubrn_uniffi_internal_fn_method_usaintsessionbuilder_ffi__bless_pointer(p, status), /*liftString:*/FfiConverterString.lift);
2244
+ },
2245
+ unbless(ptr) {
2246
+ ptr.markDestroyed();
2247
+ },
2248
+ pointer(obj) {
2249
+ if (obj[destructorGuardSymbol] === undefined) {
2250
+ throw new UniffiInternalError.UnexpectedNullPointer();
2251
+ }
2252
+ return obj[pointerLiteralSymbol];
2253
+ },
2254
+ clonePointer(obj) {
2255
+ const pointer = this.pointer(obj);
2256
+ return uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_clone_usaintsessionbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
2257
+ },
2258
+ freePointer(pointer) {
2259
+ uniffiCaller.rustCall(/*caller:*/callStatus => nativeModule().ubrn_uniffi_rusaint_ffi_fn_free_usaintsessionbuilder(pointer, callStatus), /*liftString:*/FfiConverterString.lift);
2260
+ },
2261
+ isConcreteType(obj) {
2262
+ return obj[destructorGuardSymbol] && obj[uniffiTypeNameSymbol] === 'USaintSessionBuilder';
2263
+ }
2264
+ };
2265
+ })();
2228
2266
  // FfiConverter for USaintSessionBuilderInterface
2229
2267
  const FfiConverterTypeUSaintSessionBuilder = new FfiConverterObject(uniffiTypeUSaintSessionBuilderObjectFactory);
2230
2268
 
@@ -2457,6 +2495,7 @@ export default Object.freeze({
2457
2495
  FfiConverterTypeLectureAssessmentApplicationBuilder,
2458
2496
  FfiConverterTypePersonalCourseScheduleApplication,
2459
2497
  FfiConverterTypePersonalCourseScheduleApplicationBuilder,
2498
+ FfiConverterTypeRusaintError,
2460
2499
  FfiConverterTypeScholarshipsApplication,
2461
2500
  FfiConverterTypeScholarshipsApplicationBuilder,
2462
2501
  FfiConverterTypeStudentInformationApplication,