From fc7a7dec7bcaf26003e35300a69c74ddcca863b8 Mon Sep 17 00:00:00 2001 From: Dany Gagnon Date: Sat, 21 Dec 2024 22:18:32 -0500 Subject: [PATCH] feat: take as mut borrow --- sqlx-core/src/arguments.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlx-core/src/arguments.rs b/sqlx-core/src/arguments.rs index 6f830e8e57..b224010334 100644 --- a/sqlx-core/src/arguments.rs +++ b/sqlx-core/src/arguments.rs @@ -28,7 +28,7 @@ pub trait Arguments<'q>: Send + Sized + Default { writer.write_str("?") } - fn merge(mut self, other: Self); + fn merge(&mut self, other: Self); } pub trait IntoArguments<'q, DB: Database>: Sized + Send {