pub unsafe trait HandleCollectorId: CollectorId {
    type Handle: GcHandle<T, System = Self::System, Id = Self>;
}
Expand description

A CollectorId that supports allocating GcHandles

Not all collectors necessarily support handles.

Associated Types

The type of GcHandle for this collector.

This is parameterized by the erased type, not by the original type.

Implementors