Fix some clippy warnings

* Rows cannot implement iterator
* DatabaseName is passed by value => Copy ?
This commit is contained in:
gwenn
2018-06-20 19:07:23 +02:00
parent 253b0f390e
commit 9c7a5583b9
2 changed files with 2 additions and 0 deletions

View File

@@ -152,6 +152,7 @@ fn path_to_cstring(p: &Path) -> Result<CString> {
}
/// Name for a database within a SQLite connection.
#[derive(Copy,Clone)]
pub enum DatabaseName<'a> {
/// The main database.
Main,