Type Alias geekorm::ForeignKeyInteger

source ·
pub type ForeignKeyInteger<T> = ForeignKey<i32, T>;
Expand description

Foreign Key as an Integer

Aliased Type§

struct ForeignKeyInteger<T> {
    pub key: i32,
    pub data: T,
}

Fields§

§key: i32

Foreign Key Value

§data: T

Foreign Key Data Type