derive Clone, Copy for AnyKind (#1474)

This commit is contained in:
yuyawk 2021-11-09 11:45:19 +09:00 committed by GitHub
parent b419bf5298
commit cdb40b1f8e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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,