@@ -411,6 +411,7 @@ pub(crate) enum TypePosition {
411
411
FnReturn ( HostLang ) ,
412
412
SharedStructField ,
413
413
SwiftCallsRustAsyncOnCompleteReturnTy ,
414
+ ThrowingInit ( HostLang ) ,
414
415
}
415
416
416
417
/// &[T]
@@ -1177,6 +1178,7 @@ impl BridgedType {
1177
1178
TypePosition :: SwiftCallsRustAsyncOnCompleteReturnTy => {
1178
1179
unimplemented ! ( )
1179
1180
}
1181
+ TypePosition :: ThrowingInit ( _) => unimplemented ! ( ) ,
1180
1182
}
1181
1183
}
1182
1184
StdLibType :: Null => "()" . to_string ( ) ,
@@ -1193,6 +1195,7 @@ impl BridgedType {
1193
1195
TypePosition :: SwiftCallsRustAsyncOnCompleteReturnTy => {
1194
1196
unimplemented ! ( )
1195
1197
}
1198
+ TypePosition :: ThrowingInit ( _) => unimplemented ! ( ) ,
1196
1199
} ,
1197
1200
StdLibType :: Vec ( ty) => match type_pos {
1198
1201
TypePosition :: FnArg ( func_host_lang, _) => {
@@ -1215,6 +1218,7 @@ impl BridgedType {
1215
1218
"UnsafeMutableRawPointer" . to_string ( )
1216
1219
}
1217
1220
}
1221
+ TypePosition :: ThrowingInit ( _) => unimplemented ! ( ) ,
1218
1222
_ => {
1219
1223
format ! (
1220
1224
"RustVec<{}>" ,
@@ -1243,6 +1247,7 @@ impl BridgedType {
1243
1247
TypePosition :: SwiftCallsRustAsyncOnCompleteReturnTy => {
1244
1248
shared_struct. ffi_name_string ( )
1245
1249
}
1250
+ TypePosition :: ThrowingInit ( _) => unimplemented ! ( ) ,
1246
1251
}
1247
1252
}
1248
1253
BridgedType :: Foreign ( CustomBridgedType :: Shared ( SharedType :: Enum ( shared_enum) ) ) => {
@@ -1259,6 +1264,7 @@ impl BridgedType {
1259
1264
TypePosition :: SwiftCallsRustAsyncOnCompleteReturnTy => {
1260
1265
unimplemented ! ( )
1261
1266
}
1267
+ TypePosition :: ThrowingInit ( _) => unimplemented ! ( ) ,
1262
1268
}
1263
1269
}
1264
1270
}
@@ -1567,6 +1573,7 @@ impl BridgedType {
1567
1573
TypePosition :: SwiftCallsRustAsyncOnCompleteReturnTy => {
1568
1574
unimplemented ! ( )
1569
1575
}
1576
+ TypePosition :: ThrowingInit ( _) => unimplemented ! ( ) ,
1570
1577
} ,
1571
1578
PointerKind :: Mut => expression. to_string ( ) ,
1572
1579
} ,
@@ -1660,6 +1667,7 @@ impl BridgedType {
1660
1667
TypePosition :: SwiftCallsRustAsyncOnCompleteReturnTy => {
1661
1668
unimplemented ! ( )
1662
1669
}
1670
+ TypePosition :: ThrowingInit ( _) => unimplemented ! ( ) ,
1663
1671
} ,
1664
1672
} ,
1665
1673
StdLibType :: Str => match type_pos {
@@ -1677,6 +1685,7 @@ impl BridgedType {
1677
1685
TypePosition :: SwiftCallsRustAsyncOnCompleteReturnTy => {
1678
1686
unimplemented ! ( )
1679
1687
}
1688
+ TypePosition :: ThrowingInit ( _) => unimplemented ! ( ) ,
1680
1689
} ,
1681
1690
StdLibType :: Vec ( _) => {
1682
1691
format ! (
0 commit comments