Skip to content

Commit

Permalink
derive Clone, Copy for AnyKind
Browse files Browse the repository at this point in the history
  • Loading branch information
yuyawk committed Oct 30, 2021
1 parent d25ab07 commit d9e31e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqlx-core/src/any/kind.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use crate::error::Error;
use std::str::FromStr;

#[derive(Debug)]
#[derive(Debug, Clone, Copy)]
pub enum AnyKind {
#[cfg(feature = "postgres")]
Postgres,
Expand Down

0 comments on commit d9e31e9

Please sign in to comment.