1 2 3 4 5 6 7 8
//! Database clients #[cfg(feature = "mysql")] pub mod mysql; #[cfg(feature = "postgres")] pub mod postgres; #[cfg(any(feature = "mysql", feature = "postgres"))] mod rdbms;