mirror of
https://github.com/rust-lang/rust.git
synced 2026-01-20 21:40:38 +00:00
`sub_ptr()` is equivalent to `usize::try_from().unwrap_unchecked()`, not `usize::from().unwrap_unchecked()` `usize::from()` gives a `usize`, not `Result<usize>`, and `usize: From<isize>` is not implemented.