(conn: T)
| 16 | |
| 17 | impl<'c> SchemaManager<'c> { |
| 18 | pub fn new<T>(conn: T) -> Self |
| 19 | where |
| 20 | T: IntoSchemaManagerConnection<'c>, |
| 21 | { |
| 22 | Self { |
| 23 | conn: conn.into_schema_manager_connection(), |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | pub async fn exec_stmt<S>(&self, stmt: S) -> Result<(), DbErr> |
| 28 | where |
nothing calls this directly
no test coverage detected