Trait BuildVTable

Source
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§

Source

const VTBL: T

Required Methods§

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.

Implementors§