pub trait LoadStore<T> { // Required methods fn load(&self) -> T; fn store(&self, value: T); }
A trait for accessing a value
E.g. from an AtomicCell
Read the value
Store a new value to the