Skip to content

Commit 1f9a8a1

Browse files
committed
Add a std::io::read_to_string function
The equivalent of `std::fs::read_to_string`, but generalized to all `Read` impls. As the documentation on `std::io::read_to_string` says, the advantage of this function is that it means you don't have to create a variable first and it provides more type safety since you can only get the buffer out if there were no errors. If you use `Read::read_to_string`, you have to remember to check whether the read succeeded because otherwise your buffer will be empty. It's friendlier to newcomers and better in most cases to use an explicit return value instead of an out parameter.
1 parent 0c11b93 commit 1f9a8a1

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

library/std/src/io/mod.rs

+27
Original file line numberDiff line numberDiff line change
@@ -945,6 +945,33 @@ pub trait Read {
945945
}
946946
}
947947

948+
/// Convenience function for [`Read::read_to_string`].
949+
///
950+
/// This avoids having to create a variable first and it provides more type safety
951+
/// since you can only get the buffer out if there were no errors. (If you use
952+
/// [`Read::read_to_string`] you have to remember to check whether the read succeeded
953+
/// because otherwise your buffer will be empty.)
954+
///
955+
/// # Examples
956+
///
957+
/// ```no_run
958+
/// #![feature(io_read_to_string)]
959+
///
960+
/// # use std::io;
961+
/// fn main() -> io::Result<()> {
962+
/// let stdin = io::read_to_string(&mut io::stdin())?;
963+
/// println!("Stdin was:");
964+
/// println!("{}", stdin);
965+
/// Ok(())
966+
/// }
967+
/// ```
968+
#[unstable(feature = "io_read_to_string", issue = "80218")]
969+
pub fn read_to_string<R: Read>(reader: &mut R) -> Result<String> {
970+
let mut buf = String::new();
971+
reader.read_to_string(&mut buf)?;
972+
Ok(buf)
973+
}
974+
948975
/// A buffer type used with `Read::read_vectored`.
949976
///
950977
/// It is semantically a wrapper around an `&mut [u8]`, but is guaranteed to be

0 commit comments

Comments
 (0)