Trait com_impl::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§

Implementors§