Skip to content

Commit

Permalink
feat: take as mut borrow
Browse files Browse the repository at this point in the history
  • Loading branch information
dgagn committed Dec 22, 2024
1 parent 31c6bf4 commit fc7a7de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqlx-core/src/arguments.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit fc7a7de

Please sign in to comment.