mmtk 0.3.2

MMTk is a framework for the design and implementation of high-performance and portable memory managers.
Documentation
1
2
3
4
5
6
use crate::util::ObjectReference;
use crate::vm::VMBinding;

pub trait LinearScan {
    fn scan<VM: VMBinding>(&self, object: ObjectReference);
}