pub trait IntoPointer {
    fn into_pointer(&self) -> *const ();
}

Required Methods§

Returns a pointer which outlives self.

Implementors§

impl<'tcx, T: 'tcx + ?Sized> IntoPointer for InternedInSet<'tcx, T>