ruru 0.9.3

Native Ruby extensions in Rust
Documentation
1
2
3
4
5
6
7
use ruby_sys::gc;

use types::Value;

pub fn mark(value: Value) {
    unsafe { gc::rb_gc_mark(value) };
}