-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
28dbcd8
commit 55f4564
Showing
3 changed files
with
52 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,46 @@ | ||
error: written amount is not handled. Use `Write::write_all` instead | ||
--> $DIR/unused_io_amount.rs:7:5 | ||
--> $DIR/unused_io_amount.rs:8:5 | ||
| | ||
LL | s.write(b"test")?; | ||
| ^^^^^^^^^^^^^^^^^ | ||
| | ||
= note: `-D clippy::unused-io-amount` implied by `-D warnings` | ||
|
||
error: read amount is not handled. Use `Read::read_exact` instead | ||
--> $DIR/unused_io_amount.rs:9:5 | ||
--> $DIR/unused_io_amount.rs:10:5 | ||
| | ||
LL | s.read(&mut buf)?; | ||
| ^^^^^^^^^^^^^^^^^ | ||
|
||
error: written amount is not handled. Use `Write::write_all` instead | ||
--> $DIR/unused_io_amount.rs:14:5 | ||
--> $DIR/unused_io_amount.rs:15:5 | ||
| | ||
LL | s.write(b"test").unwrap(); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: read amount is not handled. Use `Read::read_exact` instead | ||
--> $DIR/unused_io_amount.rs:16:5 | ||
--> $DIR/unused_io_amount.rs:17:5 | ||
| | ||
LL | s.read(&mut buf).unwrap(); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: read amount is not handled | ||
--> $DIR/unused_io_amount.rs:20:5 | ||
--> $DIR/unused_io_amount.rs:21:5 | ||
| | ||
LL | s.read_vectored(&mut [io::IoSliceMut::new(&mut [])])?; | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: written amount is not handled | ||
--> $DIR/unused_io_amount.rs:21:5 | ||
--> $DIR/unused_io_amount.rs:22:5 | ||
| | ||
LL | s.write_vectored(&[io::IoSlice::new(&[])])?; | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: aborting due to 6 previous errors | ||
error: read amount is not handled. Use `Read::read_exact` instead | ||
--> $DIR/unused_io_amount.rs:29:5 | ||
| | ||
LL | reader.read(&mut result).ok()?; | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: aborting due to 7 previous errors | ||
|