1use serde::Serialize; 2 3#[derive(Debug, Serialize, Clone, PartialEq, Eq, Hash)] 4pub enum SQLiteType { 5 Text, 6 Integer, 7 Real, 8 Decimal, 9 Blob, 10}