Skip to content

Commit 75383ea

Browse files
committed
Auto merge of #27531 - bluss:io-copy-dst, r=alexcrichton
std: Allow ?Sized parameters in std::io::copy
2 parents 8856927 + 664fdbe commit 75383ea

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

src/libstd/io/util.rs

+14-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ use io::{self, Read, Write, ErrorKind, BufRead};
4646
/// # }
4747
/// ```
4848
#[stable(feature = "rust1", since = "1.0.0")]
49-
pub fn copy<R: Read, W: Write>(reader: &mut R, writer: &mut W) -> io::Result<u64> {
49+
pub fn copy<R: ?Sized, W: ?Sized>(reader: &mut R, writer: &mut W) -> io::Result<u64>
50+
where R: Read, W: Write
51+
{
5052
let mut buf = [0; super::DEFAULT_BUF_SIZE];
5153
let mut written = 0;
5254
loop {
@@ -154,7 +156,17 @@ mod tests {
154156
use prelude::v1::*;
155157

156158
use io::prelude::*;
157-
use io::{sink, empty, repeat};
159+
use io::{copy, sink, empty, repeat};
160+
161+
#[test]
162+
fn copy_copies() {
163+
let mut r = repeat(0).take(4);
164+
let mut w = sink();
165+
assert_eq!(copy(&mut r, &mut w).unwrap(), 4);
166+
167+
let mut r = repeat(0).take(1 << 17);
168+
assert_eq!(copy(&mut r as &mut Read, &mut w as &mut Write).unwrap(), 1 << 17);
169+
}
158170

159171
#[test]
160172
fn sink_sinks() {

0 commit comments

Comments
 (0)