pub trait AddedColumnKeys {
// Required methods
fn try_key_constraints(
&self,
table: &str,
) -> Result<Vec<TableKeyConstraint>, ColumnCatalogError>;
fn try_foreign_keys(
&self,
table: &str,
) -> Result<Vec<ForeignKey>, ColumnCatalogError>;
}Required Methods§
fn try_key_constraints( &self, table: &str, ) -> Result<Vec<TableKeyConstraint>, ColumnCatalogError>
fn try_foreign_keys( &self, table: &str, ) -> Result<Vec<ForeignKey>, ColumnCatalogError>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".