Returns an iterator over all parameters in the command line as byte slices. This is similar to `iter()` but yields `&[u8]` directly instead of `Parameter`, which can be more convenient when you just need the raw byte representation.
(&self)
| 133 | /// This is similar to `iter()` but yields `&[u8]` directly instead of `Parameter`, |
| 134 | /// which can be more convenient when you just need the raw byte representation. |
| 135 | pub fn iter_bytes(&self) -> CmdlineIterBytes<'_> { |
| 136 | CmdlineIterBytes(&self.0) |
| 137 | } |
| 138 | |
| 139 | /// Returns an iterator over all parameters in the command line |
| 140 | /// which are valid UTF-8. |