@rusaint/react-native 0.12.0 → 0.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/RusaintReactNative.podspec +44 -0
- package/android/CMakeLists.txt +3 -4
- package/android/build.gradle +1 -0
- package/android/src/main/jniLibs/arm64-v8a/librusaint_ffi.a +0 -0
- package/android/src/main/jniLibs/armeabi-v7a/librusaint_ffi.a +0 -0
- package/android/src/main/jniLibs/x86/librusaint_ffi.a +0 -0
- package/android/src/main/jniLibs/x86_64/librusaint_ffi.a +0 -0
- package/build/RusaintReactNative.xcframework/Info.plist +4 -4
- package/build/RusaintReactNative.xcframework/_CodeSignature/CodeDirectory +0 -0
- package/build/RusaintReactNative.xcframework/_CodeSignature/CodeRequirements-1 +0 -0
- package/build/RusaintReactNative.xcframework/_CodeSignature/CodeResources +6 -6
- package/build/RusaintReactNative.xcframework/_CodeSignature/CodeSignature +0 -0
- package/build/RusaintReactNative.xcframework/ios-arm64/librusaint_ffi.a +0 -0
- package/build/RusaintReactNative.xcframework/ios-arm64-simulator/librusaint_ffi.a +0 -0
- package/lib/commonjs/generated/rusaint.js +39 -35
- package/lib/commonjs/generated/rusaint.js.map +1 -1
- package/lib/commonjs/generated/rusaint_ffi.js +598 -559
- package/lib/commonjs/generated/rusaint_ffi.js.map +1 -1
- package/lib/commonjs/index.js +11 -1
- package/lib/commonjs/index.js.map +1 -1
- package/lib/module/generated/rusaint.js +39 -35
- package/lib/module/generated/rusaint.js.map +1 -1
- package/lib/module/generated/rusaint_ffi.js +598 -559
- package/lib/module/generated/rusaint_ffi.js.map +1 -1
- package/lib/module/index.js +7 -0
- package/lib/module/index.js.map +1 -1
- package/lib/typescript/commonjs/src/generated/rusaint.d.ts +1 -1
- package/lib/typescript/commonjs/src/generated/rusaint.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/generated/rusaint_ffi.d.ts +89 -1
- package/lib/typescript/commonjs/src/generated/rusaint_ffi.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/index.d.ts +1 -0
- package/lib/typescript/commonjs/src/index.d.ts.map +1 -1
- package/lib/typescript/module/src/generated/rusaint.d.ts +1 -1
- package/lib/typescript/module/src/generated/rusaint.d.ts.map +1 -1
- package/lib/typescript/module/src/generated/rusaint_ffi.d.ts +89 -1
- package/lib/typescript/module/src/generated/rusaint_ffi.d.ts.map +1 -1
- package/lib/typescript/module/src/index.d.ts +1 -0
- package/lib/typescript/module/src/index.d.ts.map +1 -1
- package/package.json +19 -19
- package/rusaint-react-native.podspec +1 -1
- package/src/generated/rusaint.ts +68 -64
- package/src/generated/rusaint_ffi.ts +1186 -1133
- 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
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
ptr
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
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
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
ptr
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
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
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
ptr
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
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
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
ptr
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
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
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
ptr
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
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
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
ptr
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
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
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
ptr
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
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
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
ptr
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
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
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
ptr
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
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
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
ptr
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
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
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
ptr
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
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
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
ptr
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
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
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
ptr
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
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
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
ptr
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
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
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
ptr
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
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
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
ptr
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
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
|
-
|
|
2069
|
-
|
|
2070
|
-
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
|
|
2074
|
-
|
|
2075
|
-
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
-
|
|
2079
|
-
ptr
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
|
|
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
|
-
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
ptr
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
|
|
2215
|
-
|
|
2216
|
-
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
|
|
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,
|