6 个版本 (破坏性更新)
0.6.0 | 2023年7月29日 |
---|---|
0.4.1 | 2023年3月28日 |
0.4.0 | 2023年2月11日 |
0.3.0 | 2022年12月24日 |
0.1.0 | 2022年2月26日 |
#1165 in 进程宏
63,583 每月下载次数
在 3 个crate中使用(通过 magnus)
24KB
318 行
Magnus的派生和进程宏。
#[magnus::wrap(class = "RbPoint", free_immediately, size)]
struct Point {
x: isize,
y: isize,
}
#[magnus::init]
fn init() -> Result<(), magnus::Error> {
magnus::define_class("RbPoint", magnus::class::object())?;
Ok(())
}
依赖项
~260–700KB
~17K SLoC