1 2 3 4 5 6 7
use crate::iunknown::IUnknown; #[repr(C)] pub struct Vmt<I: 'static> { pub iunknown: IUnknown<I>, pub interface: I, }