pub trait CellData:
Copy
+ PartialEq
+ Hash
+ Debug {
// Required methods
fn from_value(val: &GosValue) -> Self;
fn into_value(self, t: ValueType) -> GosValue;
}
Required Methods§
fn from_value(val: &GosValue) -> Self
fn into_value(self, t: ValueType) -> GosValue
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.