pub type Heap<T> = Heap<T>;
#[repr(C)]pub struct Heap<T> { pub ptr: UnsafeCell<T>, }
ptr: UnsafeCell<T>