Checks if there is currently a connection to the underlying Sqlite database.
(&self)
| 106 | |
| 107 | /// Checks if there is currently a connection to the underlying Sqlite database. |
| 108 | pub async fn is_open(&self) -> bool { |
| 109 | self.pool.read().await.is_some() |
| 110 | } |
| 111 | |
| 112 | /// Returns true if the database is encrypted. |
| 113 | /// |
no outgoing calls
no test coverage detected