14个版本

0.2.0 2024年3月14日
0.1.11 2023年9月4日
0.1.10 2023年4月3日
0.1.9 2022年9月14日
0.1.0 2020年8月26日

#176 in Rust模式

Download history 3134/week @ 2024-03-14 3000/week @ 2024-03-21 2556/week @ 2024-03-28 2359/week @ 2024-04-04 2393/week @ 2024-04-11 2592/week @ 2024-04-18 2582/week @ 2024-04-25 2369/week @ 2024-05-02 2158/week @ 2024-05-09 2500/week @ 2024-05-16 2252/week @ 2024-05-23 3055/week @ 2024-05-30 10561/week @ 2024-06-06 19705/week @ 2024-06-13 17571/week @ 2024-06-20 15324/week @ 2024-06-27

63,660 每月下载量
用于 43 个crate (10直接)

MIT/Apache

57KB
860

vtable crate

Crates.io Docs.rs

一个用于创建ffi友好的虚拟表的宏。

查看crate文档 获取更多详情。


lib.rs:

此crate允许您创建ffi友好的虚拟表。

特性

  • 一个#[vtable]宏,用于注释VTable结构体以生成与其安全交互的特性和结构。
  • VRef/VRefMut/VBox类型。它们是胖引用/box类型,包含指向vtable的指针和指向对象的指针。
  • [VRc]/VWeak类型:与std::rc::{Rc, Weak}类型等效,但与vtable指针一起工作。
  • 能够在vtable中存储常量。
  • 这些常量甚至可以是字段偏移。

使用示例

use vtable::*;
// we are going to declare a VTable structure for an Animal trait
#[vtable]
#[repr(C)]
struct AnimalVTable {
/// pointer to a function that makes a noise.  The `VRef<AnimalVTable>` is the type of
/// the self object.
///
/// Note: the #[vtable] macro will automatically add `extern "C"` if that is missing.
make_noise: fn(VRef<AnimalVTable>, i32) -> i32,

/// if there is a 'drop' member, it is considered as the destructor.
drop: fn(VRefMut<AnimalVTable>),
}

struct Dog(i32);

// The #[vtable] macro created the Animal Trait
impl Animal for Dog {
fn make_noise(&self, intensity: i32) -> i32 {
println!("Wof!");
return self.0 * intensity;
}
}

// the vtable macro also exposed a macro to create a vtable
AnimalVTable_static!(static DOG_VT for Dog);

// with that, it is possible to instantiate a VBox
let animal_box = VBox::<AnimalVTable>::new(Dog(42));
assert_eq!(animal_box.make_noise(2), 42 * 2);

#[vtable]宏创建了一个"Animal"特质。

注意,#[vtable]宏应用于VTable结构体,以便cbindgen可以查看实际的vtable。

依赖项

~1.2–1.7MB
~34K SLoC