Function vtable

pub unsafe fn vtable<T>(ptr: *const T) -> NonNull<()>
where T: ?Sized,
Expand description

Extract the address to a trait object’s vtable.

§Safety

Must only be called when T is a dyn Trait.