pub trait CellGetSet<T> { // Required methods fn get(&'static self) -> T; fn set(&'static self, value: T); }