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