(s: T)
| 122 | |
| 123 | #[allow(dead_code)] |
| 124 | pub(crate) fn conn_err<T>(s: T) -> DbErr |
| 125 | where |
| 126 | T: ToString, |
| 127 | { |
| 128 | DbErr::Conn(RuntimeErr::Internal(s.to_string())) |
| 129 | } |
| 130 | |
| 131 | #[allow(dead_code)] |
| 132 | pub(crate) fn exec_err<T>(s: T) -> DbErr |
no outgoing calls
no test coverage detected