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.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".