use vtable_gen::cpp_class; cpp_class! { #[derive(Debug, Default)] #[gen_vtable(no_unimpl)] struct Foo { a: T, virtual(1) extern "fastcall" fn func(&self, a: u32, b: f32) -> usize, } impl Foo { /// Creates a new `Foo`. fn new(a: T) -> Self { Self { a } } } } impl FooVirtuals for Foo { extern "fastcall" fn func(_this: &Foo, a: u32, b: f32) -> usize { a as usize + b as usize } } cpp_class! { #[derive(Debug, Default)] #[gen_vtable(no_unimpl)] struct Bar: Foo { b: U virtual fn bar(&self) -> &U } impl Bar { fn new(a: U, b: U) -> Self { Self { base_foo: Foo::new(a), b } } } } impl FooVirtuals for Bar { extern "fastcall" fn func(_this: &Foo, a: u32, b: f32) -> usize { a as usize + b as usize + N as usize } } impl BarVirtuals for Bar { extern "C" fn bar(this: &Bar) -> &U { &this.a } } #[test] fn layout() { assert_eq!( std::mem::size_of::>(), std::mem::size_of::() * 3 ); assert_eq!( std::mem::size_of::>(), std::mem::size_of::() * 3 ); } #[test] fn basic() { let b = Bar::<23, u32>::new(2, 3); // manually select the implementation assert_eq!( as FooVirtuals>::func(&b, 1, 2.0), 3); assert_eq!( as FooVirtuals>::func(&b, 1, 2.0), 26); assert_eq!( as BarVirtuals<23, u32>>::bar(&b), &2); // call through the vtable assert_eq!(b.func(1, 2.0), 26); assert_eq!(b.bar(), &2); } #[test] #[should_panic] fn unimpl_method() { let b = Bar::<23, u32>::new(2, 3); // ensure that unimplemented methods panic (unsafe { &*(b.vfptr as *const FooVTable) }.unimpl_0)() } #[test] fn default() { let b = Bar::default(); // manually select the implementation assert_eq!( as FooVirtuals>::func(&b, 1, 2.0), 3); assert_eq!( as FooVirtuals>::func(&b, 1, 2.0), 26); assert_eq!( as BarVirtuals<23, u32>>::bar(&b), &0); // call through the vtable assert_eq!(b.func(1, 2.0), 26); assert_eq!(b.bar(), &0); }