//! [`Table`] trait — implemented by `#[derive(Table)]` for every model struct.
/// A database table with a known name.
////// Implemented automatically by `#[derive(Table)]`. Users never need to
/// implement this by hand.
pubtraitTable: Send + Sync + 'static {/// The SQL table name (e.g. `"users"`).
fntable_name()->&'staticstrwhereSelf: Sized;
}