Trait interlock::utils::PinDerefMut
source · pub trait PinDerefMut: Deref {
// Required method
fn pin_deref_mut(self: Pin<&mut Self>) -> &mut Self::Target;
}
Expand description
The equivalent of DerefMut
for !Unpin
types.
The target is unpinned. It doesn’t override dereference operations (like
*smart_ptr
).