Trait simple_tables::TableRow[][src]

pub trait TableRow {
    fn get_fields() -> Vec<&'static str, Global>;
fn get_field_types() -> Vec<&'static str, Global>; 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