]> git.scottworley.com Git - tablify/commitdiff
Elide elidable lifetime
authorScott Worley <scottworley@scottworley.com>
Wed, 16 Jul 2025 10:00:47 +0000 (03:00 -0700)
committerScott Worley <scottworley@scottworley.com>
Wed, 16 Jul 2025 10:00:47 +0000 (03:00 -0700)
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 {
     type Item = Result<Rowlike, std::io::Error>;
     fn next(&mut self) -> Option<Self::Item> {
         loop {