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>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl StructDecodable for google_cloud_bigquery::query::row::Row

source§

impl StructDecodable for google_cloud_bigquery::storage::row::Row