pub(crate) trait CastTo: 'static { type Target: 'static; }
Helper trait to force turbofish on calls to e.g. ptr.cast::<U>().
ptr.cast::<U>()
Target type of the cast. This is always equal to Self, but can deliberately not be inferred by the compiler.
Self