pub trait Table {
    fn table_name() -> TableName;
    fn fields() -> Vec<FieldName, Global>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A>where
    A: Allocator,
; }

Required Methods

extract the table name from a struct

extract the columns from struct

Implementors