Trait simple_tables_core::TableRow[][src]

pub trait TableRow {
    fn get_fields() -> Vec<&'static str>;
fn get_field_types() -> Vec<&'static str>; fn field_count() -> usize { ... } }

Required methods

Returns a vector containing the names of the fields

Returns a vector containing the types of the fields

Provided methods

Returns the amount of fields in this struct

Implementors