| 26 | /// Defines a sqlx MySQL pool |
| 27 | #[derive(Clone)] |
| 28 | pub struct SqlxMySqlPoolConnection { |
| 29 | pub(crate) pool: MySqlPool, |
| 30 | metric_callback: Option<crate::metric::Callback>, |
| 31 | } |
| 32 | |
| 33 | impl std::fmt::Debug for SqlxMySqlPoolConnection { |
| 34 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
no outgoing calls
no test coverage detected