Stabilize Pin::as_deref_mut
This commit is contained in:
parent
10a9ee0607
commit
5db54bee68
@ -1422,7 +1422,7 @@ pub fn as_mut(&mut self) -> Pin<&mut Ptr::Target> {
|
|||||||
/// move in the future, and this method does not enable the pointee to move. "Malicious"
|
/// move in the future, and this method does not enable the pointee to move. "Malicious"
|
||||||
/// implementations of `Ptr::DerefMut` are likewise ruled out by the contract of
|
/// implementations of `Ptr::DerefMut` are likewise ruled out by the contract of
|
||||||
/// `Pin::new_unchecked`.
|
/// `Pin::new_unchecked`.
|
||||||
#[unstable(feature = "pin_deref_mut", issue = "86918")]
|
#[stable(feature = "pin_deref_mut", since = "CURRENT_RUSTC_VERSION")]
|
||||||
#[must_use = "`self` will be dropped if the result is not used"]
|
#[must_use = "`self` will be dropped if the result is not used"]
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pub fn as_deref_mut(self: Pin<&mut Pin<Ptr>>) -> Pin<&mut Ptr::Target> {
|
pub fn as_deref_mut(self: Pin<&mut Pin<Ptr>>) -> Pin<&mut Ptr::Target> {
|
||||||
|
Loading…
Reference in New Issue
Block a user