Skip to content

Commit 664fdbe

Browse files
committed
std: Allow ?Sized parameters in std::io::copy
std::io::copy did not allow passing trait objects directly (only with an extra &mut wrapping).
1 parent 832e5a0 commit 664fdbe

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
@@ -45,7 +45,9 @@ use io::{self, Read, Write, ErrorKind, BufRead};
4545
/// # }
4646
/// ```
4747
#[stable(feature = "rust1", since = "1.0.0")]
48-
pub fn copy<R: Read, W: Write>(reader: &mut R, writer: &mut W) -> io::Result<u64> {
48+
pub fn copy<R: ?Sized, W: ?Sized>(reader: &mut R, writer: &mut W) -> io::Result<u64>
49+
where R: Read, W: Write
50+
{
4951
let mut buf = [0; super::DEFAULT_BUF_SIZE];
5052
let mut written = 0;
5153
loop {
@@ -153,7 +155,17 @@ mod tests {
153155
use prelude::v1::*;
154156

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

158170
#[test]
159171
fn sink_sinks() {

0 commit comments

Comments
 (0)