make ffi support full {i,u}64 range

This commit is contained in:
Bennet Bleßmann
2025-08-01 19:07:07 +02:00
parent 620459ea1e
commit bd1f8bb37e
4 changed files with 97 additions and 106 deletions
+3
View File
@@ -583,10 +583,13 @@ mod private {
}
}
impl<T: FitsInFixnumSeal> MightNotFitInFixnumSeal for T {}
impl MightNotFitInFixnumSeal for i64 {}
impl MightNotFitInFixnumSeal for u64 {}
impl MightNotFitInFixnumSeal for &Integer {}
impl MightNotFitInFixnumSeal for Integer {}
impl MightNotFitInFixnumSeal for usize {}
impl MightNotFitInFixnumSeal for isize {}
}
#[allow(private_bounds)]