feophantlib/engine/objects/
index.rs

1use uuid::Uuid;
2
3use super::types::SqlTypeDefinition;
4use std::sync::Arc;
5
6#[derive(Clone, Debug, PartialEq)]
7pub struct Index {
8    pub id: Uuid,
9    pub name: String,
10    pub columns: Arc<SqlTypeDefinition>,
11    pub unique: bool,
12}