pub unsafe trait GcSystem {
    type Id: CollectorId;
    type Context: GcContext<Id = Self::Id>;
}
Expand description

A garbage collector implementation.

These implementations should be completely safe and zero-overhead.

Associated Types

The type of collector IDs given by this system

The type of contexts used in this sytem

Implementors