pub trait SQLForeignKey {
type SourceTable;
type TargetTable;
type SourceColumns;
type TargetColumns;
}Expand description
Typed (non-dyn) foreign key metadata.
Compile-time foreign key information via associated types for source/target table and column sets.