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) }; }