Skip to content

Commit 3b8e604

Browse files
committed
mark io::cursor as unstable
Signed-off-by: Yoshua Wuyts <[email protected]>
1 parent 69c9162 commit 3b8e604

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Diff for: src/io/cursor.rs

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ use std::task::{Context, Poll};
2222
/// [`Vec`]: https://doc.rust-lang.org/std/vec/struct.Vec.html
2323
/// [bytes]: https://doc.rust-lang.org/std/primitive.slice.html
2424
/// [`File`]: struct.File.html
25+
#[cfg_attr(feature = "docs", doc(cfg(unstable)))]
2526
#[derive(Clone, Debug, Default)]
2627
pub struct Cursor<T> {
2728
inner: std::io::Cursor<T>,

0 commit comments

Comments
 (0)