feophant 0.9.0

A SQL database server written in Rust and inspired by PostreSQL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use uuid::Uuid;

use super::types::SqlTypeDefinition;
use std::sync::Arc;

#[derive(Clone, Debug, PartialEq)]
pub struct Index {
    pub id: Uuid,
    pub name: String,
    pub columns: Arc<SqlTypeDefinition>,
    pub unique: bool,
}