pub trait CellData: Copy + PartialEq + Hash + Debug {
// Required methods
fn from_value(val: &GosValue) -> Self;
fn into_value(self, t: ValueType) -> GosValue;
}
pub trait CellData: Copy + PartialEq + Hash + Debug {
// Required methods
fn from_value(val: &GosValue) -> Self;
fn into_value(self, t: ValueType) -> GosValue;
}