pub unsafe fn from_raw_parts<T: ?Sized>( data: *const (), vtable: *const (), ) -> *const T
Create a fat pointer from a data address and a vtable address.
Must only be called when T is a dyn Trait. The data address must point to a value whose type implements the trait of T and the vtable must have been extracted with vtable.
T
dyn Trait
vtable