]> git.proxmox.com Git - rustc.git/blobdiff - library/std/src/sys/unsupported/process.rs
New upstream version 1.65.0+dfsg1
[rustc.git] / library / std / src / sys / unsupported / process.rs
index 42a1ff730e37997ca3b6c0362e513cdea51b9d0e..633f17c054bc670c59d6f17c4a51003ba2c92e3b 100644 (file)
@@ -200,6 +200,9 @@ impl<'a> Iterator for CommandArgs<'a> {
     fn next(&mut self) -> Option<&'a OsStr> {
         None
     }
+    fn size_hint(&self) -> (usize, Option<usize>) {
+        (0, Some(0))
+    }
 }
 
 impl<'a> ExactSizeIterator for CommandArgs<'a> {}