use core::{ops, pin::Pin};
pub trait PinDerefMut: ops::Deref {
fn pin_deref_mut(self: Pin<&mut Self>) -> &mut Self::Target;
}
impl<T: ?Sized> PinDerefMut for &mut T {
#[inline]
fn pin_deref_mut(self: Pin<&mut Self>) -> &mut Self::Target {
*Pin::into_inner(self)
}
}