Skip to content

Commit

Permalink
fix: Derive clone for SqliteOperation
Browse files Browse the repository at this point in the history
  • Loading branch information
John Smith committed Sep 7, 2024
1 parent 10bec32 commit 7eae348
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqlx-sqlite/src/connection/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ pub struct LockedSqliteHandle<'a> {
pub(crate) struct Handler(NonNull<dyn FnMut() -> bool + Send + 'static>);
unsafe impl Send for Handler {}

#[derive(Debug, PartialEq, Eq)]
#[derive(Debug, PartialEq, Eq, Clone)]
pub enum SqliteOperation {
Insert,
Update,
Expand Down

0 comments on commit 7eae348

Please sign in to comment.