1 unstable release
0.1.0 | May 14, 2025 |
---|
#1958 in Rust patterns
144 downloads per month
9KB
128 lines
Platform-specific safe cast.
See CastFrom
for details.
platform-cast

Platform-specific safe cast.
From |
TryFrom |
as cast |
CastFrom |
|
---|---|---|---|---|
No runtime check | ✅ | ❌ | ✅ | ✅ |
usize <-> u64 [^a] |
❌ | ✅ | ✅ | ✅ |
No truncation | ✅ | ✅ | ❌ | ✅ |
No change of sign | ✅ | ✅ | ❌ | ✅ |
[^a]: Assuming a target with a pointer width of 64.