1
2
3
4
5
6
7
8
use tonic::Status;

/// Tries to generate a table name from a row.
pub trait RowToTableName: Sync + Send + 'static {
    type Row: Send + Sync;

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