pub trait TableObject<'tx> {
    fn decode(data_val: &[u8]) -> Result<Self, Error>
    where
        Self: Sized
; }
Expand description

Implement this to be able to decode data values

Required Methods

Implementations on Foreign Types

Implementors