pub unsafe fn transmute_mut_reference<'a, T, U>(ref_: &'a mut T) -> &'a mut UExpand description
Transmute a mutable reference to another mutable reference, changing the referent’s type.
§Safety
This has the same safety concerns that std::mem::transmute has, including that
T has to have an alignment and be compatible with U.