pub trait StructDecodable: Sized {
    // Required method
    fn decode_arrow(fields: &[ArrayRef], row_no: usize) -> Result<Self, Error>;
}

Required Methods§

source

fn decode_arrow(fields: &[ArrayRef], row_no: usize) -> Result<Self, Error>

Implementors§