nanocom 0.2.1

Nano-COM, extremly small subset of cross-platform COM
Documentation
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,
}