pub trait PostgresTableInfo: SQLTableInfo {
// Required methods
fn type(&self) -> &PostgresSchemaType;
fn postgres_columns(&self) -> &'static [&'static dyn PostgresColumnInfo];
fn postgres_dependencies(&self) -> &'static [&'static dyn PostgresTableInfo];
}Required Methods§
fn type(&self) -> &PostgresSchemaType
fn postgres_columns(&self) -> &'static [&'static dyn PostgresColumnInfo]
Sourcefn postgres_dependencies(&self) -> &'static [&'static dyn PostgresTableInfo]
fn postgres_dependencies(&self) -> &'static [&'static dyn PostgresTableInfo]
Returns all tables this table depends on via foreign keys.