#[derive(Debug, Queryable, Serialize, Clone)] pub struct ProductImg { pub id: i32, pub path: String, } use super::schema::images; #[table_name = "images"] #[derive(Debug, Insertable)] pub struct NewProductImg { pub path: String, }