usecrate::Sql;/// DropTable is used to specify a drop table query.
pubstructDropTable<'a>{/// The name of the table to drop
pubtable:&'astr,
}impl<'a> Sql forDropTable<'a>{fnsql(&self)-> String{let result =format!("DROP TABLE {}",self.table);
result
}}