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>;
}

Required Associated Types§

Required Methods§

source

fn row2table(&self, row: &Self::Row) -> Result<String, Status>

Implementors§