* ``` pub struct StaticCell { used: AtomicBool, val: UnsafeCell>, } ``` I've made similar types before do you really want to waste that much memory on the `bool`s ? I think you can make that type, or a similar one, do that if you want