pin-utils
pin-utils copied to clipboard
Consider renaming pin_mut! to pin!
Considering the stack pinning utilities for shared references are unneeded, we probably don't need mut of pin_mut! macro.
We can avoid a breaking change by adding this as a reexport of pin_mut!. Then, remove pin_mut! in the next major version. (Actually, I would like to deprecate pin_mut in favor of pin, so it would be better if pin_mut is a reexport.)
Closing - pin_mut! is now soft-deprecated in favor of std::pin::pin! that stabilized in Rust 1.68. (#39)