This commit is contained in:
gwenn
2016-05-03 21:00:59 +02:00
parent 59872a1850
commit 6fb549420b
4 changed files with 31 additions and 12 deletions

View File

@@ -950,7 +950,8 @@ pub struct MappedRows<'stmt, F> {
map: F,
}
impl<'stmt, T, F> Iterator for MappedRows<'stmt, F> where F: FnMut(&Row) -> T
impl<'stmt, T, F> Iterator for MappedRows<'stmt, F>
where F: FnMut(&Row) -> T
{
type Item = Result<T>;