Trait CellData

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

Required Methods§

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.

Implementations on Foreign Types§

Source§

impl CellData for u8

Source§

impl CellData for u16

Source§

impl CellData for u32

Source§

impl CellData for u64

Source§

impl CellData for usize

Implementors§