pub async fn bulk_delete( db: &Db, table: &str, ids: &[String], ) -> Result<(), Error>
DELETE FROM table WHERE "id" IN (?, ?, …). Same parameter-only guarantees as bulk_update. Empty ids → no-op.
DELETE FROM table WHERE "id" IN (?, ?, …)
bulk_update
ids