pub(crate) trait Trace {
// Required method
fn trace(&self, state: &mut GcState);
}
Expand description
A trait for owned types that can be traced by the garbage collector. This should be implemented by any type that will hold references to GC managed objects.