1use super::{FieldId, IndexId}; 2 3#[derive(Debug, Clone)] 4pub struct PrimaryKey { 5 /// Fields composing the primary key 6 pub fields: Vec<FieldId>, 7 8 /// Primary key index 9 pub index: IndexId, 10}