2个不稳定版本
使用旧版Rust 2015
| 0.2.0 | 2018年5月22日 | 
|---|---|
| 0.1.0 | 2018年3月28日 | 
6 #libloading中的排名
7KB
53 行
libfastdl-rust
关于
一个libloading包装库,用于缓存函数指针到哈希表
使用方法
let mut lib = super::Library::new("libdltest.so").unwrap();
unsafe {
    let test_fn = lib.get::<unsafe extern fn(i32) -> i32>("test").unwrap();
    assert!(test_fn(100) == 200);
}
许可证
Mozilla Public License 2.0
依赖
~91–425KB