#gc #memory #boehm

bin+lib boehm-rs

Rust 对 BoehmGC 的接口

2 个版本

0.1.2 2019年2月1日
0.1.0 2019年2月1日

65#gc

MIT 许可证

30KB
975

boehm-rs

Rust 对 BoehmGC 的接口

示例


use boehm_rs::global_alloc::GcAlloc;
use boehm_rs::{gc_init,gc_enable};

#[global_allocator]
static A: GcAlloc = GcAlloc;

fn main() {
    gc_enable();
    gc_init();
    let string = String::from("Hello,world!");

    println!("{}",string);
}

依赖项

~0–2.3MB
~45K SLoC