]> git.scottworley.com Git - tablify/blobdiff - src/lib.rs
Elide elidable lifetime
[tablify] / src / lib.rs
index e199470146730fd89cfea466878f926d0c42e488..4773b88a20c3ba8b46da2491d96d8410462651d0 100644 (file)
@@ -207,9 +207,7 @@ impl<'cfg, Input: Iterator<Item = Result<String, std::io::Error>>> Reader<'cfg,
         }
     }
 }
-impl<'cfg, Input: Iterator<Item = Result<String, std::io::Error>>> Iterator
-    for Reader<'cfg, Input>
-{
+impl<Input: Iterator<Item = Result<String, std::io::Error>>> Iterator for Reader<'_, Input> {
     type Item = Result<Rowlike, std::io::Error>;
     fn next(&mut self) -> Option<Self::Item> {
         loop {