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.
2 parents 2ee02b2 + 47e81ed commit d390d63Copy full SHA for d390d63
src/libcollections/string.rs
@@ -1842,6 +1842,12 @@ impl fmt::Write for String {
1842
}
1843
1844
/// A draining iterator for `String`.
1845
+///
1846
+/// This struct is created by the [`drain()`] method on [`String`]. See its
1847
+/// documentation for more.
1848
1849
+/// [`drain()`]: struct.String.html#method.drain
1850
+/// [`String`]: struct.String.html
1851
#[stable(feature = "drain", since = "1.6.0")]
1852
pub struct Drain<'a> {
1853
/// Will be used as &'a mut String in the destructor
0 commit comments