Follow up to: https://github.com/nrc/portable-interoperable/issues/1#issuecomment-1019507797. We should bring ecosystem libraries related to pinning into the Rust stdlib / language. Generally there are two categories of libraries to replace: - [x] [`pin-utils`](https://docs.rs/pin-utils/latest/pin_utils/) for stack pinning (Provided by [`core::pin::pin!`](https://github.com/rust-lang/rust/issues/93178)) - [ ] [`pin-project`](https://docs.rs/pin-project/latest/pin_project/) for pin projections. ## References - [Post: Safe pin projections through view types](https://blog.yoshuawuyts.com/safe-pin-projections-through-view-types/)