Returns a reference to the underlying libsql connection.
(&self)
| 203 | |
| 204 | /// Returns a reference to the underlying libsql connection. |
| 205 | pub fn conn(&self) -> &Connection { |
| 206 | &self.conn |
| 207 | } |
| 208 | |
| 209 | /// Consumes the `Database`, closing the underlying connection. |
| 210 | pub fn close(self) { |
no outgoing calls