/// Strategy for mapping the *calling CPU* to a slot index.
////// Implement this trait to tell the allocator on which CPU he
/// is on (the returned value is viewed a *hint*).
pubtraitCpuId{/// A stable per-CPU index for the calling CPU.
fncurrent_cpu()->usize;}/// Default implementation: routes everything to index 0.
pubstructNoCpuId;implCpuId forNoCpuId{fncurrent_cpu()->usize{0}}