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

@@ -27,6 +27,7 @@ impl<'stmt> Rows<'stmt> {
/// lifetime of the returned row is tied to the lifetime of `self`. This is a
/// "streaming iterator". For a more natural interface, consider using `query_map`
/// or `query_and_then` instead, which return types that implement `Iterator`.
#[cfg_attr(feature = "cargo-clippy", allow(should_implement_trait))] // cannot implement Iterator
pub fn next<'a>(&'a mut self) -> Option<Result<Row<'a, 'stmt>>> {
self.stmt
.and_then(|stmt| match stmt.step() {