nanocom 0.2.1

Nano-COM, extremly small subset of cross-platform COM
Documentation
1
2
3
4
5
6
use crate::{Interface, Vmt};

pub trait Class: Sized {
    type Interface: Interface;
    fn static_vmt() -> &'static Vmt<Self::Interface>;
}