pub unsafe trait HasStaticVTable<VT>
where VT: ?Sized + VTableMeta,
{ // Required method fn static_vtable() -> &'static VT::VTable; }
Expand description

Allow to associate a VTable with a type.

§Safety

The VTABLE and STATIC_VTABLE need to be a valid virtual table corresponding to pointer to Self instance.

Required Methods§

source

fn static_vtable() -> &'static VT::VTable

Safety: must be a valid VTable for Self

Object Safety§

This trait is not object safe.

Implementors§