pub unsafe trait ConstCollectorId: CollectorId {
    fn resolve_array_len_const<T>(repr: &GcArray<'_, T, Self>) -> usize;
}
Expand description

const access to the CollectorId

Required methods

Resolve the length of the specified GcArray

Implementors