Closed matheus-consoli closed 1 year ago
This PR adds support to making types !Unpin.
!Unpin
Ex.:
pin_project! { #[project(!Unpin)] struct Foo<A, B> { #[pin] a: A, b: B, } }
We also hide the documentation of the implementation that makes the type !Unpin, so it should not show in the rustdoc sidebar.
closes: #75
Published in 0.2.11.
This PR adds support to making types
!Unpin
.Ex.:
We also hide the documentation of the implementation that makes the type
!Unpin
, so it should not show in the rustdoc sidebar.closes: #75