We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9ef35a commit f560508Copy full SHA for f560508
core/src/str/lossy.rs
@@ -8,6 +8,8 @@ impl [u8] {
8
/// Creates an iterator over the contiguous valid UTF-8 ranges of this
9
/// slice, and the non-UTF-8 fragments in between.
10
///
11
+ /// See the [`Utf8Chunk`] type for documenation of the items yielded by this iterator.
12
+ ///
13
/// # Examples
14
15
/// This function formats arbitrary but mostly-UTF-8 bytes into Rust source
@@ -148,6 +150,8 @@ impl fmt::Debug for Debug<'_> {
148
150
/// If you want a simple conversion from UTF-8 byte slices to string slices,
149
151
/// [`from_utf8`] is easier to use.
152
153
+/// See the [`Utf8Chunk`] type for documenation of the items yielded by this iterator.
154
+///
155
/// [byteslice]: slice
156
/// [`from_utf8`]: super::from_utf8
157
0 commit comments