We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ec628d commit 5210f48Copy full SHA for 5210f48
library/std/src/io/mod.rs
@@ -1425,9 +1425,9 @@ pub trait Write {
1425
///
1426
/// If this method consumed `n > 0` bytes of `buf` it must return [`Ok(n)`].
1427
/// If the return value is `Ok(n)` then `n` must satisfy `n <= buf.len()`.
1428
- /// Unless `buf` is empty, this function shouldn’t return `Ok(0)` since the
1429
- /// caller may interpret that as an error. To indicate lack of space,
1430
- /// implementors should return [`ErrorKind::StorageFull`] error instead.
+ /// A return value of `Ok(0)` typically means that the underlying object is
+ /// no longer able to accept bytes and will likely not be able to in the
+ /// future as well, or that the buffer provided is empty.
1431
1432
/// # Errors
1433
0 commit comments