pub trait RowToTableName: Sync + Send + 'static { type Row: Send + Sync; // Required method fn row2table(&self, row: &Self::Row) -> Result<String, Status>; }
Tries to generate a table name from a row.