summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/unused_io_amount.stderr
blob: 7ba7e09c0f0df3a42cd73197eee487450d302ec8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
error: written amount is not handled
  --> $DIR/unused_io_amount.rs:9:5
   |
LL |     s.write(b"test")?;
   |     ^^^^^^^^^^^^^^^^^
   |
   = help: use `Write::write_all` instead, or handle partial writes
   = note: `-D clippy::unused-io-amount` implied by `-D warnings`

error: read amount is not handled
  --> $DIR/unused_io_amount.rs:11:5
   |
LL |     s.read(&mut buf)?;
   |     ^^^^^^^^^^^^^^^^^
   |
   = help: use `Read::read_exact` instead, or handle partial reads

error: written amount is not handled
  --> $DIR/unused_io_amount.rs:16:5
   |
LL |     s.write(b"test").unwrap();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: use `Write::write_all` instead, or handle partial writes

error: read amount is not handled
  --> $DIR/unused_io_amount.rs:18:5
   |
LL |     s.read(&mut buf).unwrap();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: use `Read::read_exact` instead, or handle partial reads

error: read amount is not handled
  --> $DIR/unused_io_amount.rs:22:5
   |
LL |     s.read_vectored(&mut [io::IoSliceMut::new(&mut [])])?;
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: written amount is not handled
  --> $DIR/unused_io_amount.rs:23:5
   |
LL |     s.write_vectored(&[io::IoSlice::new(&[])])?;
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: read amount is not handled
  --> $DIR/unused_io_amount.rs:30:5
   |
LL |     reader.read(&mut result).ok()?;
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: use `Read::read_exact` instead, or handle partial reads

error: read amount is not handled
  --> $DIR/unused_io_amount.rs:39:5
   |
LL |     reader.read(&mut result).or_else(|err| Err(err))?;
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: use `Read::read_exact` instead, or handle partial reads

error: read amount is not handled
  --> $DIR/unused_io_amount.rs:51:5
   |
LL |     reader.read(&mut result).or(Err(Error::Kind))?;
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: use `Read::read_exact` instead, or handle partial reads

error: read amount is not handled
  --> $DIR/unused_io_amount.rs:58:5
   |
LL | /     reader
LL | |         .read(&mut result)
LL | |         .or(Err(Error::Kind))
LL | |         .or(Err(Error::Kind))
LL | |         .expect("error");
   | |________________________^
   |
   = help: use `Read::read_exact` instead, or handle partial reads

error: written amount is not handled
  --> $DIR/unused_io_amount.rs:67:5
   |
LL |     w.write(b"hello world").await.unwrap();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: use `AsyncWriteExt::write_all` instead, or handle partial writes

error: read amount is not handled
  --> $DIR/unused_io_amount.rs:72:5
   |
LL |     r.read(&mut buf[..]).await.unwrap();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: use `AsyncReadExt::read_exact` instead, or handle partial reads

error: written amount is not handled
  --> $DIR/unused_io_amount.rs:85:9
   |
LL |         w.write(b"hello world").await?;
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: use `AsyncWriteExt::write_all` instead, or handle partial writes

error: read amount is not handled
  --> $DIR/unused_io_amount.rs:93:9
   |
LL |         r.read(&mut buf[..]).await.or(Err(Error::Kind))?;
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: use `AsyncReadExt::read_exact` instead, or handle partial reads

error: written amount is not handled
  --> $DIR/unused_io_amount.rs:101:5
   |
LL |     w.write(b"hello world").await.unwrap();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: use `AsyncWriteExt::write_all` instead, or handle partial writes

error: read amount is not handled
  --> $DIR/unused_io_amount.rs:106:5
   |
LL |     r.read(&mut buf[..]).await.unwrap();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: use `AsyncReadExt::read_exact` instead, or handle partial reads

error: aborting due to 16 previous errors