Module mmtk::plan::generational::global
source · Structs§
- Common implementation for generational plans. Each generational plan should include this type, and forward calls to it where possible.
Traits§
- This trait includes methods that are specific to generational plans. This trait needs to be object safe.
- This trait is the extension trait for
GenerationalPlan
(see Rust’s extension trait pattern). Generally any method should be put toGenerationalPlan
if possible while keepingGenerationalPlan
object safe. In this case, generic methods will be put to this extension trait.
Functions§
- Is current GC only collecting objects allocated since last GC? This method can be called with any plan (generational or not). For non generational plans, it will always return false.