pub unsafe trait BuildVTable<T: 'static> {
const VTBL: T;
// Required method
fn static_vtable() -> VTable<T>;
}
Expand description
Trait that allows accessing the VTable for all of the COM interfaces your object implements.
Required Associated Constants§
Required Methods§
fn static_vtable() -> VTable<T>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.