diff options
| author | Steven Fackler <sfackler@gmail.com> | 2020-03-11 18:02:52 -0700 |
|---|---|---|
| committer | Steven Fackler <sfackler@gmail.com> | 2020-04-26 04:24:16 -0700 |
| commit | 07443f17d4c2e8135d1cbf415f6bd22eee86b64a (patch) | |
| tree | 1fc883588b4098f527849ab69f4fa8fef23b55cb /src/libstd/io/util.rs | |
| parent | 15262ec6be6fcfc9f27e174a0714d5a62e775fb0 (diff) | |
| download | rust-07443f17d4c2e8135d1cbf415f6bd22eee86b64a.tar.gz rust-07443f17d4c2e8135d1cbf415f6bd22eee86b64a.zip | |
Update name
Diffstat (limited to 'src/libstd/io/util.rs')
| -rw-r--r-- | src/libstd/io/util.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/io/util.rs b/src/libstd/io/util.rs index 01947cd8b89..b9d5dc27db0 100644 --- a/src/libstd/io/util.rs +++ b/src/libstd/io/util.rs @@ -180,7 +180,7 @@ impl Read for Repeat { } #[inline] - fn can_read_vectored(&self) -> bool { + fn is_read_vectored(&self) -> bool { true } @@ -241,7 +241,7 @@ impl Write for Sink { } #[inline] - fn can_write_vectored(&self) -> bool { + fn is_write_vectored(&self) -> bool { true } |
