pub trait PrimaryKey {
type PrimaryKeyType;
// Required method
fn primary_key(&self) -> &Self::PrimaryKeyType;
}Expand description
Trait for getting the value of the primary key
pub trait PrimaryKey {
type PrimaryKeyType;
// Required method
fn primary_key(&self) -> &Self::PrimaryKeyType;
}Trait for getting the value of the primary key