mirror of
https://github.com/openharmony/third_party_rust_rust.git
synced 2026-07-16 07:54:55 -04:00
24066910ca
`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.