Trait vtables::VTable[][src]

pub trait VTable {
    unsafe fn get_virtual<T: Sized>(&self, index: usize) -> T;
}

Required methods

Safety

This calls function pointers from memory with arbitrary parameters. This is just about as unsafe as it gets.

Implementors