We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
bufread_skip_until
1 parent 7c9ad34 commit 1d7d765Copy full SHA for 1d7d765
library/std/src/io/mod.rs
@@ -2205,7 +2205,7 @@ pub trait BufRead: Read {
2205
/// assert_eq!(num_bytes, 11);
2206
/// assert_eq!(animal, b"Crustacean\0");
2207
/// ```
2208
- #[unstable(feature = "bufread_skip_until", issue = "none")]
+ #[unstable(feature = "bufread_skip_until", issue = "111735")]
2209
fn skip_until(&mut self, byte: u8) -> Result<usize> {
2210
skip_until(self, byte)
2211
}
0 commit comments