use super::db_row::DbRow; #[derive(Debug)] pub struct DbConstraint { pub name: String, pub column_name: String, pub origin: String, } impl DbRow for DbConstraint { fn fields(&self) -> Vec { vec![ "name".to_string(), "column_name".to_string(), "origin".to_string(), ] } fn columns(&self) -> Vec { vec![ self.name.to_string(), self.column_name.to_string(), self.origin.to_string(), ] } }